Lines Matching refs:objectName
281 tObject *GetObject(tObjectList * list, const char *objectName, const char *sectionName) in GetObject() argument
287 if (isSame(t->objectName, objectName) && isSame(t->sectionName, sectionName)) in GetObject()
297 BOOL AddObject(tObjectList * list, const char *objectName, tObjectType objectType) in AddObject() argument
300 t->objectName = objectName; in AddObject()
325 debug_printf("t->objectName=[%s]\n", t->objectName); in SetObjectSection()
327 if (GetObject(list, t->objectName, sectionName)) in SetObjectSection()
329 char *s = Alloc(strlen(t->objectName) + strlen(sectionName) + 80); in SetObjectSection()
330 sprintf(s, "OBJECT '%s (%s)' already existed. Ignored.", t->objectName, in SetObjectSection()
348 BOOL OverlayAddObject(const char *objectName, tObjectType objectType) in OverlayAddObject() argument
350 return AddObject(&CurrentOverlay->tail->objects, objectName, objectType); in OverlayAddObject()
364 BOOL OverlayAddLibrary(const char *objectName, tObjectType objectType) in OverlayAddLibrary() argument
366 return AddObject(&CurrentOverlay->tail->libraries, objectName, objectType); in OverlayAddLibrary()
437 BOOL StaticAddObject(const char *objectName, tObjectType objectType) in StaticAddObject() argument
439 return AddObject(&Static.objects, objectName, objectType); in StaticAddObject()
453 BOOL StaticAddLibrary(const char *objectName, tObjectType objectType) in StaticAddLibrary() argument
455 return AddObject(&Static.libraries, objectName, objectType); in StaticAddLibrary()
725 printf(" Object : %s %s\n", t->objectName, t->sectionName); in DumpObjects()