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

  /external/chromium_org/components/nacl/loader/nonsfi/
elf_loader.cc 118 // Returns the load size for the given phdrs, or 0 on error.
119 ElfW(Addr) GetLoadSize(const ElfW(Phdr)* phdrs, int phnum) { member in namespace:nacl::nonsfi::__anon11035
124 const ElfW(Phdr)& phdr = phdrs[i];
142 // Reserves the memory for the given phdrs, and stores the memory bias to the
144 NaClErrorCode ReserveMemory(const ElfW(Phdr)* phdrs, member in namespace:nacl::nonsfi::__anon11035
147 ElfW(Addr) size = GetLoadSize(phdrs, phnum);
155 if (phdrs[i].p_type == PT_LOAD) {
156 // Here, phdrs[i] is the first loadable segment.
157 if (phdrs[i].p_vaddr != 0) {
179 const ElfW(Phdr)* phdrs, int phnum, ElfW(Addr) load_bias member in namespace:nacl::nonsfi::__anon11035
249 ElfW(Phdr) phdrs[MAX_PROGRAM_HEADERS]; member in struct:nacl::nonsfi::ElfImage::Data
    [all...]
  /external/elfutils/0.153/libdwfl/
elf-from-memory.c 179 /* We already have all the phdrs from the initial read. */
207 } phdrs; local
209 xlateto.d_buf = &phdrs;
210 xlateto.d_size = sizeof phdrs;
241 if (phdrs.p32[i].p_type == PT_LOAD)
242 handle_segment (phdrs.p32[i].p_vaddr, phdrs.p32[i].p_offset,
243 phdrs.p32[i].p_filesz, phdrs.p32[i].p_align);
251 if (phdrs.p64[i].p_type == PT_LOAD
    [all...]
dwfl_segment_report_module.c 64 This more than covers the phdrs and note segment in the average 64-bit
255 } phdrs; local
257 xlateto.d_buf = &phdrs;
258 xlateto.d_size = sizeof phdrs;
422 consider_phdr (phdrs.p32[i].p_type,
423 phdrs.p32[i].p_vaddr, phdrs.p32[i].p_memsz,
424 phdrs.p32[i].p_offset, phdrs.p32[i].p_filesz,
425 phdrs.p32[i].p_align)
    [all...]
  /external/libunwind/src/coredump/
_UCD_internal.h 57 /* Similar to ELF phdrs. p_paddr element is absent,
90 coredump_phdr_t *phdrs; /* array, allocated */ member in struct:UCD_info
_UCD_create.c 149 Debug(0, "Can't read phdrs from '%s'\n", filename);
153 coredump_phdr_t *phdrs = ui->phdrs = memset(malloc(size * sizeof(phdrs[0])), 0, size * sizeof(phdrs[0])); local
156 coredump_phdr_t *cur = phdrs;
163 Debug(0, "Can't read phdrs from '%s'\n", filename);
182 coredump_phdr_t *cur = phdrs;
189 Debug(0, "Can't read phdrs from '%s'\n", filename);
209 coredump_phdr_t *cur = phdrs;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
elf-fdpic.h 39 struct elf_phdr *phdrs; /* ref copy of PT_PHDR table */ member in struct:elf_fdpic_params
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
elf-fdpic.h 39 struct elf_phdr *phdrs; /* ref copy of PT_PHDR table */ member in struct:elf_fdpic_params
  /frameworks/compile/mclinker/include/mcld/Script/
OutputSectDesc.h 127 const StringList& phdrs() const { function in struct:mcld::OutputSectDesc::Epilog
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.cc 743 char *phdrs = base + ehdr->e_phoff; local
744 char *phdrs_end = phdrs + ehdr->e_phnum * ehdr->e_phentsize;
750 for (char *iter = phdrs; iter != phdrs_end; iter += ehdr->e_phentsize) {
759 for (char *iter = phdrs; iter != phdrs_end; iter += ehdr->e_phentsize) {

Completed in 624 milliseconds