Lines Matching refs:sectionName
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()
301 t->sectionName = NULL; in AddObject()
307 BOOL SetObjectSection(tObjectList * list, const char *sectionName) in SetObjectSection() argument
311 debug_printf("sectionName=[%s]\n", sectionName); in SetObjectSection()
315 if (!t->sectionName) in SetObjectSection()
319 if (!isNeedSection(t) && sectionName[0] == '*') in SetObjectSection()
327 if (GetObject(list, t->objectName, sectionName)) in SetObjectSection()
329 char *s = Alloc(strlen(t->objectName) + strlen(sectionName) + 80); in SetObjectSection()
331 sectionName); in SetObjectSection()
336 t->sectionName = strdup(sectionName); in SetObjectSection()
354 BOOL OverlaySetObjectSection(const char *sectionName) in OverlaySetObjectSection() argument
356 return SetObjectSection(&CurrentOverlay->tail->objects, sectionName); in OverlaySetObjectSection()
370 BOOL OverlaySetLibrarySection(const char *sectionName) in OverlaySetLibrarySection() argument
372 return SetObjectSection(&CurrentOverlay->tail->libraries, sectionName); in OverlaySetLibrarySection()
443 BOOL StaticSetObjectSection(const char *sectionName) in StaticSetObjectSection() argument
445 return SetObjectSection(&Static.objects, sectionName); in StaticSetObjectSection()
459 BOOL StaticSetLibrarySection(const char *sectionName) in StaticSetLibrarySection() argument
461 return SetObjectSection(&Static.libraries, sectionName); in StaticSetLibrarySection()
725 printf(" Object : %s %s\n", t->objectName, t->sectionName); in DumpObjects()