Searched defs:phdrs (Results 1 - 6 of 6) sorted by last modified time

/external/libunwind/src/coredump/
H A D_UCD_create.c149 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...]
H A D_UCD_internal.h57 /* Similar to ELF phdrs. p_paddr element is absent,
90 coredump_phdr_t *phdrs; /* array, allocated */ member in struct:UCD_info
/external/elfutils/0.153/libdwfl/
H A Ddwfl_segment_report_module.c64 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
[all...]
H A Delf-from-memory.c179 /* 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
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cc743 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) {
/external/chromium_org/components/nacl/loader/nonsfi/
H A Delf_loader.cc118 // 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::__anon6614
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::__anon6614
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, in member in namespace:nacl::nonsfi::__anon6614
249 ElfW(Phdr) phdrs[MAX_PROGRAM_HEADERS]; member in struct:nacl::nonsfi::ElfImage::Data
[all...]

Completed in 2425 milliseconds