Lines Matching refs:sect
24 LLVMSectionIteratorRef sect; in object_list_sections() local
38 sect = LLVMGetSections(O); in object_list_sections()
39 while (!LLVMIsSectionIteratorAtEnd(O, sect)) { in object_list_sections()
40 printf("'%s': @0x%08" PRIx64 " +%" PRIu64 "\n", LLVMGetSectionName(sect), in object_list_sections()
41 LLVMGetSectionAddress(sect), LLVMGetSectionSize(sect)); in object_list_sections()
43 LLVMMoveToNextSection(sect); in object_list_sections()
46 LLVMDisposeSectionIterator(sect); in object_list_sections()
56 LLVMSectionIteratorRef sect; in object_list_symbols() local
71 sect = LLVMGetSections(O); in object_list_symbols()
75 LLVMMoveToContainingSection(sect, sym); in object_list_symbols()
78 LLVMGetSectionName(sect)); in object_list_symbols()