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

  /external/google-breakpad/src/common/linux/
elfutils.cc 95 const Phdr* phdrs = local
99 if (phdrs[i].p_type == segment_type) {
100 *segment_start = elf_base + phdrs[i].p_offset;
101 *segment_size = phdrs[i].p_filesz;
  /external/elfutils/src/libdwfl/
elf-from-memory.c 163 /* We already have all the phdrs from the initial read. */
191 } phdrs; local
193 xlateto.d_buf = &phdrs;
194 xlateto.d_size = sizeof phdrs;
237 if (phdrs.p32[i].p_type == PT_LOAD)
238 if (handle_segment (phdrs.p32[i].p_vaddr, phdrs.p32[i].p_offset,
239 phdrs.p32[i].p_filesz, phdrs.p32[i].p_memsz))
248 if (phdrs.p64[i].p_type == PT_LOAD
    [all...]
dwfl_segment_report_module.c 46 This more than covers the phdrs and note segment in the average 64-bit
407 } phdrs; local
409 xlateto.d_buf = &phdrs;
410 xlateto.d_size = sizeof phdrs;
573 consider_phdr (phdrs.p32[i].p_type,
574 phdrs.p32[i].p_vaddr, phdrs.p32[i].p_memsz,
575 phdrs.p32[i].p_offset, phdrs.p32[i].p_filesz,
576 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.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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-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 121 const StringList& phdrs() const { function in struct:mcld::OutputSectDesc::Epilog
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.cc 773 char *phdrs = base + ehdr->e_phoff; local
774 char *phdrs_end = phdrs + ehdr->e_phnum * ehdr->e_phentsize;
780 for (char *iter = phdrs; iter != phdrs_end; iter += ehdr->e_phentsize) {
789 for (char *iter = phdrs; iter != phdrs_end; iter += ehdr->e_phentsize) {

Completed in 354 milliseconds