Lines Matching refs:sectionName
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()
302 t->sectionName = NULL; in AddObject()
308 BOOL SetObjectSection(tObjectList * list, const char *sectionName) in SetObjectSection() argument
312 debug_printf("sectionName=[%s]\n", sectionName); in SetObjectSection()
316 if (!t->sectionName) in SetObjectSection()
320 if (!isNeedSection(t) && sectionName[0] == '*') in SetObjectSection()
328 if (GetObject(list, t->objectName, sectionName)) in SetObjectSection()
330 char *s = Alloc(strlen(t->objectName) + strlen(sectionName) + 80); in SetObjectSection()
332 sectionName); in SetObjectSection()
337 t->sectionName = strdup(sectionName); in SetObjectSection()
355 BOOL OverlaySetObjectSection(const char *sectionName) in OverlaySetObjectSection() argument
357 return SetObjectSection(&CurrentOverlay->tail->objects, sectionName); in OverlaySetObjectSection()
371 BOOL OverlaySetLibrarySection(const char *sectionName) in OverlaySetLibrarySection() argument
373 return SetObjectSection(&CurrentOverlay->tail->libraries, sectionName); in OverlaySetLibrarySection()
471 BOOL StaticSetObjectSection(const char *sectionName) in StaticSetObjectSection() argument
473 return SetObjectSection(&Static.objects, sectionName); in StaticSetObjectSection()
487 BOOL StaticSetLibrarySection(const char *sectionName) in StaticSetLibrarySection() argument
489 return SetObjectSection(&Static.libraries, sectionName); in StaticSetLibrarySection()
763 printf(" Object : %s %s\n", t->objectName, t->sectionName); in DumpObjects()