HomeSort by relevance Sort by last modified time
    Searched defs:Elf_Phdr (Results 1 - 13 of 13) sorted by null

  /external/syslinux/gpxe/src/image/
elf.c 39 typedef Elf32_Phdr Elf_Phdr;
50 static int elf_load_segment ( struct image *image, Elf_Phdr *phdr,
123 Elf_Phdr phdr;
  /external/syslinux/com32/include/sys/i386/
module.h 31 typedef Elf32_Phdr Elf_Phdr;
  /external/syslinux/com32/include/sys/x86_64/
module.h 31 typedef Elf64_Phdr Elf_Phdr;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
Elf32Convert.c 84 typedef Elf32_Phdr Elf_Phdr;
95 STATIC Elf_Phdr *mPhdrBase;
164 mPhdrBase = (Elf_Phdr *)((UINT8 *)mEhdr + mEhdr->e_phoff);
208 Elf_Phdr*
218 return (Elf_Phdr *)((UINT8*)mPhdrBase + num * mEhdr->e_phentsize);
    [all...]
Elf64Convert.c 85 typedef Elf64_Phdr Elf_Phdr;
96 STATIC Elf_Phdr *mPhdrBase;
168 mPhdrBase = (Elf_Phdr *)((UINT8 *)mEhdr + mEhdr->e_phoff);
    [all...]
  /external/compiler-rt/lib/cfi/
cfi.cc 20 typedef ElfW(Phdr) Elf_Phdr;
206 const Elf_Phdr *phdr = &info->dlpi_phdr[phdr_idx];
241 const Elf_Phdr *phdr = &info->dlpi_phdr[i];
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux_libcdep.cc 415 typedef ElfW(Phdr) Elf_Phdr;
417 # define Elf_Phdr XElf32_Phdr
442 const Elf_Phdr *phdr = &info->dlpi_phdr[i];
sanitizer_linux.cc 871 typedef ElfW(Phdr) Elf_Phdr;
884 Elf_Phdr *phdr = (Elf_Phdr *)iter;
893 Elf_Phdr *phdr = (Elf_Phdr *)iter;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
ELF.h 49 typedef typename ELFT::Phdr Elf_Phdr;
135 if (getHeader()->e_phnum && getHeader()->e_phentsize != sizeof(Elf_Phdr))
138 reinterpret_cast<const Elf_Phdr *>(base() + getHeader()->e_phoff);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
ELF.h 49 typedef typename ELFT::Phdr Elf_Phdr;
135 if (getHeader()->e_phnum && getHeader()->e_phentsize != sizeof(Elf_Phdr))
138 reinterpret_cast<const Elf_Phdr *>(base() + getHeader()->e_phoff);
  /external/llvm/include/llvm/Object/
ELF.h 47 typedef Elf_Phdr_Impl<ELFT> Elf_Phdr;
172 const Elf_Phdr *program_header_begin() const {
173 if (Header->e_phnum && Header->e_phentsize != sizeof(Elf_Phdr))
175 return reinterpret_cast<const Elf_Phdr *>(base() + Header->e_phoff);
178 const Elf_Phdr *program_header_end() const {
  /development/vndk/tools/definition-tool/
vndk_definition_tool.py 290 Elf_Phdr = collections.namedtuple(
291 'Elf_Phdr',
561 return parse_struct(Elf_Phdr, elf_phdr_fmt, offset,
567 return Elf_Phdr(p[0], p[2], p[3], p[4], p[5], p[6], p[1],
    [all...]
  /external/llvm/tools/llvm-readobj/
ELFDumper.cpp 60 typedef typename ELFO::Elf_Phdr Elf_Phdr; \
141 typedef typename ELFO::Elf_Phdr Elf_Phdr;
161 DynRegionInfo createDRIFrom(const Elf_Phdr *P, uintX_t EntSize) {
169 void parseDynamicTable(ArrayRef<const Elf_Phdr *> LoadSegments);
348 bool checkTLSSections(const Elf_Phdr &Phdr, const Elf_Shdr &Sec);
349 bool checkoffsets(const Elf_Phdr &Phdr, const Elf_Shdr &Sec);
350 bool checkVMA(const Elf_Phdr &Phdr, const Elf_Shdr &Sec);
351 bool checkPTDynamic(const Elf_Phdr &Phdr, const Elf_Shdr &Sec)
    [all...]

Completed in 815 milliseconds