Lines Matching refs:sectionName
326 tObject *GetObject(tObjectList * list, const char *objectName, const char *sectionName) in GetObject() argument
332 if (isSame(t->objectName, objectName) && isSame(t->sectionName, sectionName)) in GetObject()
346 t->sectionName = NULL; in AddObject()
352 BOOL SetObjectSection(tObjectList * list, const char *sectionName) in SetObjectSection() argument
356 debug_printf("sectionName=[%s]\n", sectionName); in SetObjectSection()
360 if (!t->sectionName) in SetObjectSection()
364 if (!isNeedSection(t) && sectionName[0] == '*') in SetObjectSection()
372 if (GetObject(list, t->objectName, sectionName)) in SetObjectSection()
374 char *s = Alloc(strlen(t->objectName) + strlen(sectionName) + 80); in SetObjectSection()
376 sectionName); in SetObjectSection()
381 t->sectionName = strdup(sectionName); in SetObjectSection()
399 BOOL OverlaySetObjectSection(const char *sectionName) in OverlaySetObjectSection() argument
401 return SetObjectSection(&CurrentOverlay->tail->objects, sectionName); in OverlaySetObjectSection()
415 BOOL OverlaySetLibrarySection(const char *sectionName) in OverlaySetLibrarySection() argument
417 return SetObjectSection(&CurrentOverlay->tail->libraries, sectionName); in OverlaySetLibrarySection()
526 BOOL StaticSetObjectSection(const char *sectionName) in StaticSetObjectSection() argument
528 return SetObjectSection(&Static.objects, sectionName); in StaticSetObjectSection()
542 BOOL StaticSetLibrarySection(const char *sectionName) in StaticSetLibrarySection() argument
544 return SetObjectSection(&Static.libraries, sectionName); in StaticSetLibrarySection()
777 printf(" Object : %s %s\n", t->objectName, t->sectionName); in DumpObjects()