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

1 2 3 4 5 6 7 8 910

  /external/minijail/
elfparse.c 30 pHeader->e_phentsize = le16toh(pHeader->e_phentsize); \
34 pHeader->e_phentsize = be16toh(pHeader->e_phentsize); \
37 if (pHeader->e_phentsize != sizeof(Minijail_Elf ## bit ## _Phdr)) \
elfparse.h 43 Elf32_Half e_phentsize; /* Program header table entry size */ member in struct:__anon27963
61 Elf64_Half e_phentsize; /* Program header table entry size */ member in struct:__anon27964
  /external/syslinux/com32/lib/sys/module/
elfutils.h 36 return (Elf_Phdr*)((Elf_Off)elf_pht + index * elf_hdr->e_phentsize);
  /external/syslinux/core/elflink/
elfutils.h 38 return (Elf32_Phdr *) ((Elf32_Off) elf_pht + index * elf_hdr->e_phentsize);
  /external/elfutils/tests/
newfile.c 45 ehdr->e_phentsize,
124 ZERO_TEST (e_phentsize);
156 VALUE_TEST (e_phentsize, (int) sizeof (Elf32_Phdr));
update1.c 76 ehdr->e_phentsize, ehdr->e_phnum, ehdr->e_shentsize,
114 ehdr->e_phentsize, ehdr->e_phnum, ehdr->e_shentsize,
elfshphehdr.c 120 ehdr.e_shoff = ehdr.e_phoff + ehdr.e_phnum * ehdr.e_phentsize;
147 check ("e_phentsize", ehdr.e_phentsize == phentsize);
update2.c 77 ehdr->e_phentsize, ehdr->e_phnum, ehdr->e_shentsize,
137 ehdr->e_phentsize, ehdr->e_phnum, ehdr->e_shentsize,
update3.c 86 ehdr->e_phentsize, ehdr->e_phnum, ehdr->e_shentsize,
192 ehdr->e_phentsize, ehdr->e_phnum, ehdr->e_shentsize,
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/ArmShellCmdRunAxf/
ElfLoader.c 102 if ((Hdr32->e_phoff == 0) || (Hdr32->e_phentsize == 0) || (Hdr32->e_phnum == 0)) {
113 DEBUG ((EFI_D_INFO, "Size of 1 program header: %d\n", Hdr32->e_phentsize));
118 if ((Hdr64->e_phoff == 0) || (Hdr64->e_phentsize == 0) || (Hdr64->e_phnum == 0)) {
129 DEBUG ((EFI_D_INFO, "Size of 1 program header: %d\n", Hdr64->e_phentsize));
328 ProgramHdr += ElfHdr->e_phentsize;
elf32.h 78 Elf32_Half e_phentsize; /* Size of program header entry. */ member in struct:__anon6022
  /toolchain/binutils/binutils-2.25/include/elf/
external.h 62 unsigned char e_phentsize[2]; /* Program header table entry size */ member in struct:__anon108615
79 unsigned char e_phentsize[2]; /* Program header table entry size */ member in struct:__anon108616
  /external/elfutils/libelf/
gelf_update_ehdr.c 89 COPY (e_phentsize);
gelf_getehdr.c 82 COPY (e_phentsize);
elf32_newphdr.c 101 elf->state.ELFW(elf,LIBELFBITS).ehdr->e_phentsize =
161 elf->state.ELFW(elf,LIBELFBITS).ehdr->e_phentsize =
175 assert (elf->state.ELFW(elf,LIBELFBITS).ehdr->e_phentsize
  /external/syslinux/com32/lib/sys/module/i386/
elf_module.c 48 pht = malloc(elf_hdr->e_phnum * elf_hdr->e_phentsize);
52 image_read(pht, elf_hdr->e_phnum * elf_hdr->e_phentsize, module);
56 cr_pht = (Elf32_Phdr*)(pht + i * elf_hdr->e_phentsize);
113 cr_pht = (Elf32_Phdr*)(pht + i * elf_hdr->e_phentsize);
  /external/syslinux/com32/lib/sys/module/x86_64/
elf_module.c 48 pht = malloc(elf_hdr->e_phnum * elf_hdr->e_phentsize);
52 image_read(pht, elf_hdr->e_phnum * elf_hdr->e_phentsize, module);
56 cr_pht = (Elf64_Phdr*)(pht + i * elf_hdr->e_phentsize);
113 cr_pht = (Elf64_Phdr*)(pht + i * elf_hdr->e_phentsize);
  /external/syslinux/gpxe/src/include/
elf.h 181 Elf32_Half e_phentsize; /* Size of program header entry. */ member in struct:__anon33109
198 Elf64_Half e_phentsize; /* Size of program header entry. */ member in struct:__anon33110
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
ReadElf.java 281 int e_phentsize = readHalf(); local
288 readProgramHeaders(ph_off, e_phnum, e_phentsize);
350 private void readProgramHeaders(long ph_off, int e_phnum, int e_phentsize) throws IOException {
352 mFile.seek(ph_off + i * e_phentsize);
  /external/syslinux/com32/include/sys/
elf32.h 71 Elf32_Half e_phentsize; member in struct:elf32_hdr
elf64.h 71 Elf64_Half e_phentsize; member in struct:elf64_hdr
  /external/syslinux/com32/modules/
elf.c 109 if (eh->e_phentsize < sizeof(Elf32_Phdr))
115 if (eh->e_phoff + eh->e_phentsize * eh->e_phnum > len)
166 ph = (Elf32_Phdr *) ((char *)ph + eh->e_phentsize);
  /external/syslinux/com32/mboot/
map.c 149 eh->e_phentsize < sizeof(Elf32_Phdr) ||
150 !eh->e_phnum || eh->e_phoff + eh->e_phentsize * eh->e_phnum > len)
224 ph = (Elf32_Phdr *) ((char *)ph + eh->e_phentsize);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
elf32.h 78 Elf32_Half e_phentsize; /* Size of program header entry. */ member in struct:__anon6112
  /external/syslinux/gpxe/src/image/
elf.c 143 phoff += ehdr.e_phentsize, phnum-- ) {

Completed in 392 milliseconds

1 2 3 4 5 6 7 8 910