HomeSort by relevance Sort by last modified time
    Searched refs:e_shnum (Results 1 - 25 of 281) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/minijail/
elfparse.h 46 Elf32_Half e_shnum; /* Section header table entry count */ member in struct:__anon28812
64 Elf64_Half e_shnum; /* Section header table entry count */ member in struct:__anon28813
  /external/elfutils/tests/
newfile.c 48 ehdr->e_shnum,
127 ZERO_TEST (e_shnum);
159 ZERO_TEST (e_shnum);
elfshphehdr.c 70 check ("e_shnum == 0", ehdr.e_shnum == 0);
97 check ("e_shnum == 0", ehdr.e_shnum == 0);
137 check ("e_shnum == 2", ehdr.e_shnum == 2);
update1.c 77 ehdr->e_shnum, ehdr->e_shstrndx);
115 ehdr->e_shnum, ehdr->e_shstrndx);
update2.c 78 ehdr->e_shnum, ehdr->e_shstrndx);
138 ehdr->e_shnum, ehdr->e_shstrndx);
update3.c 87 ehdr->e_shnum, ehdr->e_shstrndx);
193 ehdr->e_shnum, ehdr->e_shstrndx);
  /external/libunwind/src/ia64/
Gfind_unwind_table.c 67 if (soff + ehdr->e_shnum * ehdr->e_shentsize > edi->ei.size)
70 soff + ehdr->e_shnum * ehdr->e_shentsize,
78 for (i = 0; i < ehdr->e_shnum; ++i)
  /toolchain/binutils/binutils-2.25/include/elf/
external.h 65 unsigned char e_shnum[2]; /* Section header table entry count */ member in struct:__anon116089
82 unsigned char e_shnum[2]; /* Section header table entry count */ member in struct:__anon116090
  /toolchain/binutils/binutils-2.25/bfd/
elfcode.h 256 dst->e_shnum = H_GET_16 (abfd, src->e_shnum);
289 tmp = src->e_shnum;
292 H_PUT_16 (abfd, tmp, dst->e_shnum);
567 if (i_ehdrp->e_shentsize != sizeof (x_shdr) && i_ehdrp->e_shnum != 0)
571 if (i_ehdrp->e_shoff == 0 && i_ehdrp->e_shnum != 0)
627 if (i_ehdrp->e_shnum == SHN_UNDEF)
629 i_ehdrp->e_shnum = i_shdr.sh_size;
630 if (i_ehdrp->e_shnum >= SHN_LORESERVE
631 || i_ehdrp->e_shnum != i_shdr.sh_siz
    [all...]
  /external/elfutils/libelf/
gelf_update_ehdr.c 92 COPY (e_shnum);
gelf_getehdr.c 85 COPY (e_shnum);
elf_begin.c 110 ehdr_mem.e32.e_shnum = ((Elf32_Ehdr *) e_ident)->e_shnum;
118 CONVERT (ehdr_mem.e32.e_shnum);
126 ehdr_mem.e64.e_shnum = ((Elf64_Ehdr *) e_ident)->e_shnum;
134 CONVERT (ehdr_mem.e64.e_shnum);
143 result = ehdr.e32->e_shnum;
192 result = ehdr.e64->e_shnum;
333 CONVERT (elf->state.elf32.ehdr_mem.e_shnum);
435 CONVERT (elf->state.elf64.ehdr_mem.e_shnum);
    [all...]
  /external/syslinux/com32/tools/
relocs.c 206 if (shndx < ehdr.e_shnum) {
282 ehdr.e_shnum = elf16_to_cpu(ehdr.e_shnum);
303 if (ehdr.e_shstrndx >= ehdr.e_shnum) {
313 secs = calloc(ehdr.e_shnum, sizeof(struct section));
316 ehdr.e_shnum);
322 for (i = 0; i < ehdr.e_shnum; i++) {
326 i, ehdr.e_shnum, strerror(errno));
337 if (sec->shdr.sh_link < ehdr.e_shnum)
346 for (i = 0; i < ehdr.e_shnum; i++)
    [all...]
  /external/swiftshader/third_party/LLVM/test/Scripts/
elf-dump 181 e_shnum = f.read16()
182 print "('e_shnum', %s)" % common_dump.HexDump(e_shnum)
188 for index in range(e_shnum[0]):
206 for index in range(e_shnum[0]):
  /external/syslinux/gpxe/src/include/
elf.h 184 Elf32_Half e_shnum; /* Number of section header entries. */ member in struct:__anon34778
201 Elf64_Half e_shnum; /* Number of section header entries. */ member in struct:__anon34779
  /system/core/libunwindstack/tests/
ElfTestUtils.cpp 68 ehdr.e_shnum = 3;
83 uint64_t symtab_offset = sizeof(ehdr) + ehdr.e_shnum * ehdr.e_shentsize;
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
ReadElf.java 284 int e_shnum = readHalf(); local
287 readSectionHeaders(sh_off, e_shnum, e_shentsize, e_shstrndx);
291 private void readSectionHeaders(long sh_off, int e_shnum, int e_shentsize, int e_shstrndx)
311 for (int i = 0; i < e_shnum; ++i) {
  /external/elfutils/libdwfl/
elf-from-memory.c 142 shdrs_end = ehdr.e32.e_shoff + ehdr.e32.e_shnum * ehdr.e32.e_shentsize;
154 shdrs_end = ehdr.e64.e_shoff + ehdr.e64.e_shnum * ehdr.e64.e_shentsize;
331 ehdr.e32.e_shnum = 0;
358 ehdr.e64.e_shnum = 0;
  /external/syslinux/com32/include/sys/
elf32.h 74 Elf32_Half e_shnum; member in struct:elf32_hdr
elf64.h 74 Elf64_Half e_shnum; member in struct:elf64_hdr
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
Elf32Convert.c 168 mCoffSectionsOffset = (UINT32 *)malloc(mEhdr->e_shnum * sizeof (UINT32));
169 memset(mCoffSectionsOffset, 0, mEhdr->e_shnum * sizeof(UINT32));
194 if (Num >= mEhdr->e_shnum)
308 for (i = 0; i < mEhdr->e_shnum; i++) {
335 for (i = 0; i < mEhdr->e_shnum; i++) {
386 for (i = 0; i < mEhdr->e_shnum; i++) {
439 for (i = 0; i < mEhdr->e_shnum; i++) {
591 for (Idx = 0; Idx < mEhdr->e_shnum; Idx++) {
619 for (Idx = 0; Idx < mEhdr->e_shnum; Idx++) {
671 || Sym->st_shndx > mEhdr->e_shnum) {
    [all...]
Elf64Convert.c 173 mCoffSectionsOffset = (UINT32 *)malloc(mEhdr->e_shnum * sizeof (UINT32));
174 memset(mCoffSectionsOffset, 0, mEhdr->e_shnum * sizeof(UINT32));
200 if (Num >= mEhdr->e_shnum)
302 for (i = 0; i < mEhdr->e_shnum; i++) {
329 for (i = 0; i < mEhdr->e_shnum; i++) {
380 for (i = 0; i < mEhdr->e_shnum; i++) {
432 for (i = 0; i < mEhdr->e_shnum; i++) {
587 for (Idx = 0; Idx < mEhdr->e_shnum; Idx++) {
616 for (Idx = 0; Idx < mEhdr->e_shnum; Idx++) {
668 || Sym->st_shndx > mEhdr->e_shnum) {
    [all...]
  /external/syslinux/com32/lib/sys/module/i386/
elf_module.c 154 sht = malloc(elf_hdr->e_shnum * elf_hdr->e_shentsize);
160 image_read(sht, elf_hdr->e_shnum * elf_hdr->e_shentsize, module);
163 for (i = 0; i < elf_hdr->e_shnum; i++) {
  /external/syslinux/com32/lib/sys/module/x86_64/
elf_module.c 154 sht = malloc(elf_hdr->e_shnum * elf_hdr->e_shentsize);
160 image_read(sht, elf_hdr->e_shnum * elf_hdr->e_shentsize, module);
163 for (i = 0; i < elf_hdr->e_shnum; i++) {
  /external/google-breakpad/src/common/linux/
dump_symbols.cc 245 int num_sections = elf_header->e_shnum;
620 elf_header->e_shnum);
640 elf_header->e_shnum);
656 elf_header->e_shnum);
660 elf_header->e_shnum);
688 elf_header->e_shnum);
706 elf_header->e_shnum);
713 elf_header->e_shnum);
717 elf_header->e_shnum);
738 names_end, elf_header->e_shnum);
    [all...]

Completed in 5964 milliseconds

1 2 3 4 5 6 7 8 91011>>