Lines Matching refs:objectName

326 tObject *GetObject(tObjectList * list, const char *objectName, const char *sectionName)  in GetObject()  argument
332 if (isSame(t->objectName, objectName) && isSame(t->sectionName, sectionName)) in GetObject()
342 BOOL AddObject(tObjectList * list, const char *objectName, tObjectType objectType) in AddObject() argument
345 t->objectName = objectName; in AddObject()
370 debug_printf("t->objectName=[%s]\n", t->objectName); in SetObjectSection()
372 if (GetObject(list, t->objectName, sectionName)) in SetObjectSection()
374 char *s = Alloc(strlen(t->objectName) + strlen(sectionName) + 80); in SetObjectSection()
375 sprintf(s, "OBJECT '%s (%s)' already existed. Ignored.", t->objectName, in SetObjectSection()
393 BOOL OverlayAddObject(const char *objectName, tObjectType objectType) in OverlayAddObject() argument
395 return AddObject(&CurrentOverlay->tail->objects, objectName, objectType); in OverlayAddObject()
409 BOOL OverlayAddLibrary(const char *objectName, tObjectType objectType) in OverlayAddLibrary() argument
411 return AddObject(&CurrentOverlay->tail->libraries, objectName, objectType); in OverlayAddLibrary()
520 BOOL StaticAddObject(const char *objectName, tObjectType objectType) in StaticAddObject() argument
522 return AddObject(&Static.objects, objectName, objectType); in StaticAddObject()
536 BOOL StaticAddLibrary(const char *objectName, tObjectType objectType) in StaticAddLibrary() argument
538 return AddObject(&Static.libraries, objectName, objectType); in StaticAddLibrary()
777 printf(" Object : %s %s\n", t->objectName, t->sectionName); in DumpObjects()