Lines Matching refs:sectionName
325 tObject *GetObject(tObjectList * list, const char *objectName, const char *sectionName) in GetObject() argument
331 if (isSame(t->objectName, objectName) && isSame(t->sectionName, sectionName)) in GetObject()
345 t->sectionName = NULL; in AddObject()
351 BOOL SetObjectSection(tObjectList * list, const char *sectionName) in SetObjectSection() argument
355 debug_printf("sectionName=[%s]\n", sectionName); in SetObjectSection()
359 if (!t->sectionName) in SetObjectSection()
363 if (!isNeedSection(t) && sectionName[0] == '*') in SetObjectSection()
371 if (GetObject(list, t->objectName, sectionName)) in SetObjectSection()
373 char *s = Alloc(strlen(t->objectName) + strlen(sectionName) + 80); in SetObjectSection()
375 sectionName); in SetObjectSection()
380 t->sectionName = strdup(sectionName); in SetObjectSection()
398 BOOL OverlaySetObjectSection(const char *sectionName) in OverlaySetObjectSection() argument
400 return SetObjectSection(&CurrentOverlay->tail->objects, sectionName); in OverlaySetObjectSection()
414 BOOL OverlaySetLibrarySection(const char *sectionName) in OverlaySetLibrarySection() argument
416 return SetObjectSection(&CurrentOverlay->tail->libraries, sectionName); in OverlaySetLibrarySection()
498 BOOL StaticSetObjectSection(const char *sectionName) in StaticSetObjectSection() argument
500 return SetObjectSection(&Static.objects, sectionName); in StaticSetObjectSection()
514 BOOL StaticSetLibrarySection(const char *sectionName) in StaticSetLibrarySection() argument
516 return SetObjectSection(&Static.libraries, sectionName); in StaticSetLibrarySection()
739 printf(" Object : %s %s\n", t->objectName, t->sectionName); in DumpObjects()