HomeSort by relevance Sort by last modified time
    Searched defs:phdr (Results 26 - 38 of 38) sorted by null

12

  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
symbol-elf.c 972 GElf_Phdr phdr; local
981 if (gelf_getphdr(elf, i, &phdr) == NULL)
983 if (phdr.p_type != PT_LOAD)
986 if (!(phdr.p_flags & PF_X))
989 if (!(phdr.p_flags & PF_R))
992 sz = min(phdr.p_memsz, phdr.p_filesz);
995 err = mapfn(phdr.p_vaddr, sz, phdr.p_offset, data);
  /external/ltrace/
ltrace-elf.c 1168 GElf_Phdr phdr; local
1170 for (i = 0; gelf_getphdr (lte.elf, i, &phdr) != NULL; ++i) {
1171 if (phdr.p_type == PT_LOAD) {
1172 lte.base_addr = phdr.p_vaddr + bias;
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_auth.c 1430 struct sctp_paramhdr *phdr, tmp_param; local
1843 struct sctp_paramhdr *phdr, parm_buf; local
    [all...]
sctp_indata.c 1422 struct sctp_paramhdr *phdr; local
    [all...]
sctp_input.c 1168 struct sctp_paramhdr *phdr; local
    [all...]
sctp_pcb.c 2400 struct sctp_paramhdr *phdr, parm_buf; local
2684 struct sctp_paramhdr parm_buf, *phdr; local
7088 struct sctp_paramhdr *phdr, parm_buf; local
    [all...]
sctp_output.c 5354 struct sctp_paramhdr *phdr, params; local
5682 struct sctp_paramhdr *phdr, params; local
9410 struct sctp_paramhdr parm, *phdr; local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.cc 738 typedef ElfW(Phdr) Elf_Phdr;
751 Elf_Phdr *phdr = (Elf_Phdr *)iter; local
752 if (phdr->p_type == PT_LOAD && preferred_base > (uptr)phdr->p_vaddr)
753 preferred_base = (uptr)phdr->p_vaddr;
760 Elf_Phdr *phdr = (Elf_Phdr *)iter; local
761 if (phdr->p_type == PT_LOAD) {
762 uptr seg_start = phdr->p_vaddr + delta;
763 uptr seg_end = seg_start + phdr->p_memsz;
  /external/elfutils/0.153/libelf/
libelfP.h 329 void *phdr; member in struct:Elf::__anon834::__anon835
349 Elf32_Phdr *phdr; /* Pointer to the program header array. */ member in struct:Elf::__anon834::__anon836
374 Elf64_Phdr *phdr; /* Pointer to the program header array. */ member in struct:Elf::__anon834::__anon837
  /external/elfutils/0.153/src/
strip.c 535 GElf_Phdr *phdr = gelf_getphdr (elf, cnt, &phdr_mem); local
536 if (phdr == NULL
537 || unlikely (gelf_update_phdr (newelf, cnt, phdr) == 0))
559 GElf_Phdr *phdr = gelf_getphdr (elf, cnt, &phdr_mem); local
560 if (phdr == NULL
561 || unlikely (gelf_update_phdr (debugelf, cnt, phdr) == 0))
    [all...]
unstrip.c 1834 GElf_Phdr *phdr = gelf_getphdr (stripped, i, &phdr_mem); local
1873 GElf_Phdr *phdr = gelf_getphdr (stripped, i, &phdr_mem); local
    [all...]
elflint.c 825 GElf_Phdr *phdr = NULL; local
830 phdr = gelf_getphdr (ebl->elf, pcnt, &phdr_mem);
831 if (phdr != NULL && phdr->p_type == PT_TLS)
845 < destshdr->sh_offset - phdr->p_offset)
851 > (destshdr->sh_offset - phdr->p_offset
858 > (destshdr->sh_offset - phdr->p_offset
986 GElf_Phdr *phdr = gelf_getphdr (ebl->elf, pcnt, &phdr_mem); local
988 if (phdr != NULL && phdr->p_type == PT_DYNAMIC
1243 GElf_Phdr *phdr = gelf_getphdr (ebl->elf, i, &phdr_mem); local
1717 GElf_Phdr *phdr = gelf_getphdr (ebl->elf, n, &phdr_mem); local
2794 GElf_Phdr *phdr = NULL; local
3710 GElf_Phdr *phdr; local
3868 GElf_Phdr *phdr = gelf_getphdr (ebl->elf, pcnt, &phdr_mem); local
4095 GElf_Phdr *phdr; local
    [all...]
readelf.c 993 GElf_Phdr *phdr = gelf_getphdr (ebl->elf, cnt, &mem); local
996 if (unlikely (phdr == NULL))
1004 ebl_segment_type_name (ebl, phdr->p_type, buf, sizeof (buf)),
1005 phdr->p_offset,
1006 ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 8 : 16, phdr->p_vaddr,
1007 ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 8 : 16, phdr->p_paddr,
1008 phdr->p_filesz,
1009 phdr->p_memsz,
1010 phdr->p_flags & PF_R ? 'R' : ' ',
1011 phdr->p_flags & PF_W ? 'W' : ' '
1051 GElf_Phdr *phdr = gelf_getphdr (ebl->elf, cnt, &phdr_mem); local
1492 GElf_Phdr *phdr = gelf_getphdr (ebl->elf, i, &phdr_mem); local
1634 GElf_Phdr *phdr = gelf_getphdr (ebl->elf, inner, local
1807 GElf_Phdr *phdr = gelf_getphdr (ebl->elf, inner, local
8241 GElf_Phdr *phdr = gelf_getphdr (ebl->elf, cnt, &mem); local
    [all...]

Completed in 979 milliseconds

12