Searched refs:phdrs (Results 1 – 8 of 8) sorted by relevance
/external/elfutils/libdwfl/ |
D | elf-from-memory.c | 207 } phdrs; in elf_from_remote_memory() local 209 xlateto.d_buf = &phdrs; in elf_from_remote_memory() 210 xlateto.d_size = sizeof phdrs; in elf_from_remote_memory() 241 if (phdrs.p32[i].p_type == PT_LOAD) in elf_from_remote_memory() 242 handle_segment (phdrs.p32[i].p_vaddr, phdrs.p32[i].p_offset, in elf_from_remote_memory() 243 phdrs.p32[i].p_filesz, phdrs.p32[i].p_align); in elf_from_remote_memory() 251 if (phdrs.p32[i].p_type == PT_LOAD) in elf_from_remote_memory() 252 handle_segment (phdrs.p64[i].p_vaddr, phdrs.p64[i].p_offset, in elf_from_remote_memory() 253 phdrs.p64[i].p_filesz, phdrs.p64[i].p_align); in elf_from_remote_memory() 298 if (phdrs.p32[i].p_type == PT_LOAD) in elf_from_remote_memory() [all …]
|
D | dwfl_segment_report_module.c | 251 } phdrs; in dwfl_segment_report_module() local 253 xlateto.d_buf = &phdrs; in dwfl_segment_report_module() 254 xlateto.d_size = sizeof phdrs; in dwfl_segment_report_module() 415 consider_phdr (phdrs.p32[i].p_type, in dwfl_segment_report_module() 416 phdrs.p32[i].p_vaddr, phdrs.p32[i].p_memsz, in dwfl_segment_report_module() 417 phdrs.p32[i].p_offset, phdrs.p32[i].p_filesz, in dwfl_segment_report_module() 418 phdrs.p32[i].p_align); in dwfl_segment_report_module() 427 consider_phdr (phdrs.p64[i].p_type, in dwfl_segment_report_module() 428 phdrs.p64[i].p_vaddr, phdrs.p64[i].p_memsz, in dwfl_segment_report_module() 429 phdrs.p64[i].p_offset, phdrs.p64[i].p_filesz, in dwfl_segment_report_module() [all …]
|
/external/valgrind/main/coregrind/m_coredump/ |
D | coredump-elf.c | 503 ESZ(Phdr) *phdrs; in make_elf_coredump() 571 phdrs = VG_(arena_malloc)(VG_AR_CORE, "coredump-elf.mec.1", in make_elf_coredump() 572 sizeof(*phdrs) * num_phdrs); in make_elf_coredump() 609 off = sizeof(ehdr) + sizeof(*phdrs) * num_phdrs; in make_elf_coredump() 611 phdrs[0].p_type = PT_NOTE; in make_elf_coredump() 612 phdrs[0].p_offset = off; in make_elf_coredump() 613 phdrs[0].p_vaddr = 0; in make_elf_coredump() 614 phdrs[0].p_paddr = 0; in make_elf_coredump() 615 phdrs[0].p_filesz = notesz; in make_elf_coredump() 616 phdrs[0].p_memsz = 0; in make_elf_coredump() [all …]
|
/external/compiler-rt/lib/msan/ |
D | msan_linux.cc | 99 char *phdrs = base + ehdr->e_phoff; in UnpoisonMappedDSO() local 100 char *phdrs_end = phdrs + ehdr->e_phnum * ehdr->e_phentsize; in UnpoisonMappedDSO() 106 for (char *iter = phdrs; iter != phdrs_end; iter += ehdr->e_phentsize) { in UnpoisonMappedDSO() 115 for (char *iter = phdrs; iter != phdrs_end; iter += ehdr->e_phentsize) { in UnpoisonMappedDSO()
|
/external/elfutils/config/ |
D | elfutils.spec.in | 238 - readelf, elflint: handle SHT_NOTE sections without requiring phdrs 242 rt dynamic symbol tables found via phdrs; dwfl_standard_find_de
|
/external/elfutils/ |
D | elfutils.spec | 238 - readelf, elflint: handle SHT_NOTE sections without requiring phdrs 242 rt dynamic symbol tables found via phdrs; dwfl_standard_find_de
|
D | NEWS | 78 readelf, elflint: handle SHT_NOTE sections without requiring phdrs 84 support dynamic symbol tables found via phdrs;
|
/external/valgrind/main/ |
D | NEWS | 245 277610 valgrind crashes in VG_(lseek)(core_fd, phdrs[idx].p_offset, ...) 2714 99348 Assertion `vgPlain_lseek(core_fd, 0, 1) == phdrs[i].p_off...
|