Lines Matching refs:objectName

325 tObject *GetObject(tObjectList * list, const char *objectName, const char *sectionName)  in GetObject()  argument
331 if (isSame(t->objectName, objectName) && isSame(t->sectionName, sectionName)) in GetObject()
341 BOOL AddObject(tObjectList * list, const char *objectName, tObjectType objectType) in AddObject() argument
344 t->objectName = objectName; in AddObject()
369 debug_printf("t->objectName=[%s]\n", t->objectName); in SetObjectSection()
371 if (GetObject(list, t->objectName, sectionName)) in SetObjectSection()
373 char *s = Alloc(strlen(t->objectName) + strlen(sectionName) + 80); in SetObjectSection()
374 sprintf(s, "OBJECT '%s (%s)' already existed. Ignored.", t->objectName, in SetObjectSection()
392 BOOL OverlayAddObject(const char *objectName, tObjectType objectType) in OverlayAddObject() argument
394 return AddObject(&CurrentOverlay->tail->objects, objectName, objectType); in OverlayAddObject()
408 BOOL OverlayAddLibrary(const char *objectName, tObjectType objectType) in OverlayAddLibrary() argument
410 return AddObject(&CurrentOverlay->tail->libraries, objectName, objectType); in OverlayAddLibrary()
492 BOOL StaticAddObject(const char *objectName, tObjectType objectType) in StaticAddObject() argument
494 return AddObject(&Static.objects, objectName, objectType); in StaticAddObject()
508 BOOL StaticAddLibrary(const char *objectName, tObjectType objectType) in StaticAddLibrary() argument
510 return AddObject(&Static.libraries, objectName, objectType); in StaticAddLibrary()
739 printf(" Object : %s %s\n", t->objectName, t->sectionName); in DumpObjects()