Home
last modified time | relevance | path

Searched refs:section_headers (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils-2.17/binutils/
H A Dreadelf.c144 static Elf_Internal_Shdr *section_headers; variable
251 #define SECTION_HEADER(I) (section_headers + SECTION_HEADER_INDEX (I))
547 if (streq (SECTION_NAME (section_headers + i), name)) in find_section()
548 return section_headers + i; in find_section()
1499 sec_name = SECTION_NAME (section_headers + sec_index); in dump_relocations()
3488 if (section_headers != NULL && elf_header.e_phnum == PN_XNUM) in process_file_header()
3489 printf (" (%ld)", (long) section_headers[0].sh_info); in process_file_header()
3495 if (section_headers != NULL && elf_header.e_shnum == 0) in process_file_header()
3496 printf (" (%ld)", (long) section_headers[0].sh_size); in process_file_header()
3500 if (section_headers != NULL && elf_header.e_shstrndx == SHN_XINDEX) in process_file_header()
[all …]
H A DChangeLog-000158 (dump_relocations): Use SECTION_HEADER to index "section_headers".
63 "section_headers".
/openbsd-src/gnu/usr.bin/binutils/binutils/
H A Dreadelf.c135 Elf_Internal_Shdr *section_headers; variable
213 #define SECTION_HEADER(I) (section_headers + SECTION_HEADER_INDEX (I))
1216 sec_name = SECTION_NAME (section_headers + sec_index); in dump_relocations()
2841 if (section_headers != NULL && elf_header.e_phnum == PN_XNUM) in process_file_header()
2842 printf (" (%ld)", (long) section_headers[0].sh_info); in process_file_header()
2848 if (section_headers != NULL && elf_header.e_shnum == 0) in process_file_header()
2849 printf (" (%ld)", (long) section_headers[0].sh_size); in process_file_header()
2853 if (section_headers != NULL && elf_header.e_shstrndx == SHN_XINDEX) in process_file_header()
2854 printf (" (%ld)", (long) section_headers[0].sh_link); in process_file_header()
2858 if (section_headers != NULL) in process_file_header()
[all …]
H A DChangeLog-000158 (dump_relocations): Use SECTION_HEADER to index "section_headers".
63 "section_headers".
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp604 SectionHeaderColl section_headers; in GetModuleSpecifications() local
607 GetSectionHeaderInfo(section_headers, data, header, uuid, in GetModuleSpecifications()
1346 size_t ObjectFileELF::GetSectionHeaderInfo(SectionHeaderColl &section_headers, in GetSectionHeaderInfo() argument
1354 if (!section_headers.empty()) in GetSectionHeaderInfo()
1355 return section_headers.size(); in GetSectionHeaderInfo()
1433 section_headers.resize(header.e_shnum); in GetSectionHeaderInfo()
1434 if (section_headers.size() != header.e_shnum) in GetSectionHeaderInfo()
1446 if (!section_headers[idx].Parse(sh_data, &offset)) in GetSectionHeaderInfo()
1449 if (idx < section_headers.size()) in GetSectionHeaderInfo()
1450 section_headers.resize(idx); in GetSectionHeaderInfo()
[all …]
H A DObjectFileELF.h267 static size_t GetSectionHeaderInfo(SectionHeaderColl &section_headers,
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DOpts.td35 def section_headers : FF<"section-headers", "Display section headers">;
117 def : FF<"sections", "Alias for --section-headers">, Alias<section_headers>;
133 def : F<"S", "Alias for --section-headers">, Alias<section_headers>;
/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/
H A DObjdumpOpts.td166 def section_headers : Flag<["--"], "section-headers">,
168 def : Flag<["--"], "headers">, Alias<section_headers>,
170 def : Flag<["-"], "h">, Alias<section_headers>,