Lines Matching refs:objectName

282 tObject *GetObject(tObjectList * list, const char *objectName, const char *sectionName)  in GetObject()  argument
288 if (isSame(t->objectName, objectName) && isSame(t->sectionName, sectionName)) in GetObject()
298 BOOL AddObject(tObjectList * list, const char *objectName, tObjectType objectType) in AddObject() argument
301 t->objectName = objectName; in AddObject()
326 debug_printf("t->objectName=[%s]\n", t->objectName); in SetObjectSection()
328 if (GetObject(list, t->objectName, sectionName)) in SetObjectSection()
330 char *s = Alloc(strlen(t->objectName) + strlen(sectionName) + 80); in SetObjectSection()
331 sprintf(s, "OBJECT '%s (%s)' already existed. Ignored.", t->objectName, in SetObjectSection()
349 BOOL OverlayAddObject(const char *objectName, tObjectType objectType) in OverlayAddObject() argument
351 return AddObject(&CurrentOverlay->tail->objects, objectName, objectType); in OverlayAddObject()
365 BOOL OverlayAddLibrary(const char *objectName, tObjectType objectType) in OverlayAddLibrary() argument
367 return AddObject(&CurrentOverlay->tail->libraries, objectName, objectType); in OverlayAddLibrary()
465 BOOL StaticAddObject(const char *objectName, tObjectType objectType) in StaticAddObject() argument
467 return AddObject(&Static.objects, objectName, objectType); in StaticAddObject()
481 BOOL StaticAddLibrary(const char *objectName, tObjectType objectType) in StaticAddLibrary() argument
483 return AddObject(&Static.libraries, objectName, objectType); in StaticAddLibrary()
763 printf(" Object : %s %s\n", t->objectName, t->sectionName); in DumpObjects()