OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:phdrs
(Results
1 - 6
of
6
) sorted by null
/external/elfutils/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
.p32[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
251
}
phdrs
;
local
253
xlateto.d_buf = &
phdrs
;
254
xlateto.d_size = sizeof
phdrs
;
415
consider_phdr (
phdrs
.p32[i].p_type,
416
phdrs
.p32[i].p_vaddr,
phdrs
.p32[i].p_memsz,
417
phdrs
.p32[i].p_offset,
phdrs
.p32[i].p_filesz,
418
phdrs
.p32[i].p_align)
[
all
...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-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.7-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
/external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.cc
649
char *
phdrs
= base + ehdr->e_phoff;
local
650
char *phdrs_end =
phdrs
+ ehdr->e_phnum * ehdr->e_phentsize;
656
for (char *iter =
phdrs
; iter != phdrs_end; iter += ehdr->e_phentsize) {
665
for (char *iter =
phdrs
; iter != phdrs_end; iter += ehdr->e_phentsize) {
Completed in 121 milliseconds