HomeSort by: relevance | last modified time | path
    Searched refs:Elf_Phdr (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/usr.sbin/mdsetimage/
exec_elf32.c 88 const Elf_Phdr *phdrp;
103 phdr_size = sizeof(Elf_Phdr) * nphdr;
107 phdrp = (const Elf_Phdr *)&mappedfile[phdr_off];
  /src/include/
link_elf.h 55 const Elf_Phdr *dlpi_phdr; /* pointer to module's phdr */
  /src/libexec/ld.elf_so/arch/arm/
find_exidx.c 68 const Elf_Phdr *ph = obj->phdr;
69 const Elf_Phdr * const phlimit = ph + obj->phsize / sizeof(*ph);
  /src/sys/arch/hpc/stand/hpcboot/
load_elf.h 40 Elf_Phdr *_ph;
load_elf.cpp 89 if ((_ph = static_cast<Elf_Phdr *>(malloc(sz))) == NULL) {
105 Elf_Phdr *ph = _ph;
152 Elf_Phdr *ph;
329 _eh.e_phentsize != sizeof(Elf_Phdr)) {
  /src/lib/libc/dlfcn/
dlfcn_elf.c 152 static const Elf_Phdr *dlpi_phdr;
183 const Elf_Phdr *phdr = (const Elf_Phdr *)dlpi_phdr;
184 const Elf_Phdr *phlimit = phdr + dlpi_phnum;
  /src/lib/libc/tls/
tls.c 148 const Elf_Phdr *phdr = data->dlpi_phdr;
149 const Elf_Phdr *phlimit = data->dlpi_phdr + data->dlpi_phnum;
  /src/libexec/ld.elf_so/
map_object.c 69 Elf_Phdr *phdr;
71 Elf_Phdr *phtls;
73 Elf_Phdr *phlimit;
74 Elf_Phdr **segs = NULL;
167 assert(ehdr->e_phentsize == sizeof(Elf_Phdr));
168 assert(ehdr->e_phoff + ehdr->e_phnum * sizeof(Elf_Phdr) <=
177 phdr = (Elf_Phdr *) ((caddr_t)ehdr + ehdr->e_phoff);
270 phdr = (Elf_Phdr *) ((caddr_t)ehdr + ehdr->e_phoff);
434 Elf_Phdr *buf = xmalloc(phsize);
rtld.h 163 const Elf_Phdr *phdr; /* Program header (may be xmalloc'ed) */
421 Obj_Entry *_rtld_digest_phdr(const Elf_Phdr *, int, caddr_t);
headers.c 519 _rtld_digest_phdr(const Elf_Phdr *phdr, int phnum, caddr_t entry)
522 const Elf_Phdr *phlimit = phdr + phnum;
523 const Elf_Phdr *ph;
rtld.c 412 _rtld_objself.phdr = (Elf_Phdr *)((char *)mapbase + ehdr->e_phoff);
676 const Elf_Phdr *phdr;
682 phdr = (const Elf_Phdr *) pAUX_phdr->a_v;
686 assert(pAUX_phent->a_v == sizeof(Elf_Phdr));
  /src/tests/libexec/ld.elf_so/
t_rtld_r_debug.c 59 const Elf_Phdr *phdr;
61 const Elf_Phdr *phlimit, *dynphdr;
  /src/sys/arch/hpcmips/stand/pbsdboot/
elf.c 136 Elf_Phdr *phtbl = NULL;
152 if ((phtbl = (Elf_Phdr *)alloc(sizeof(*phtbl) * elf->e_phnum)) == NULL ||
164 if (read(fd, (void *)phtbl, sizeof(Elf_Phdr) * elf->e_phnum)
165 != (int)(sizeof(Elf_Phdr) * elf->e_phnum)) {
  /src/sys/sys/
ksyms.h 85 Elf_Phdr kh_phdr[NPRGHDR];
  /src/sys/kern/
exec_elf.c 107 elf_load_psection(struct exec_vmcmd_set *, struct vnode *, const Elf_Phdr *,
129 elf_placedynexec(struct exec_package *epp, Elf_Ehdr *eh, Elf_Phdr *ph)
328 const Elf_Phdr *ph, Elf_Addr *addr, u_long *size, int flags)
426 Elf_Phdr *ph = NULL;
427 const Elf_Phdr *base_ph;
428 const Elf_Phdr *last_ph;
500 phsize = eh.e_phnum * sizeof(Elf_Phdr);
653 Elf_Phdr *ph, *pp;
693 phsize = eh->e_phnum * sizeof(Elf_Phdr);
904 Elf_Phdr *ph
    [all...]
core_elf32.c 73 Elf_Phdr *psections;
116 Elf_Phdr *psections;
182 ehdr.e_phentsize = sizeof(Elf_Phdr);
307 Elf_Phdr phdr;
  /src/sys/compat/linux/arch/amd64/
linux_exec_machdep.c 132 Elf_Phdr *ph;
155 phsize = eh->e_phnum * sizeof(Elf_Phdr);
156 ph = (Elf_Phdr *)kmem_alloc(phsize, KM_SLEEP);
  /src/lib/csu/common/
crt0-common.c 225 const Elf_Phdr *phdr = NULL;
246 const Elf_Phdr *phlimit = phdr + phnum, *dynphdr = NULL;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_linux_libcdep.cc 422 const Elf_Phdr *hdr = info->dlpi_phdr;
423 const Elf_Phdr *last_hdr = hdr + info->dlpi_phnum;
535 typedef ElfW(Phdr) Elf_Phdr;
537 #define Elf_Phdr XElf32_Phdr
562 const Elf_Phdr *phdr = &info->dlpi_phdr[i];
sanitizer_platform_limits_openbsd.cc 120 unsigned struct_ElfW_Phdr_sz = sizeof(Elf_Phdr);
  /src/sys/compat/linux/common/
linux_exec_elf32.c 370 Elf_Phdr *ph;
379 phsize = eh->e_phnum * sizeof(Elf_Phdr);
380 ph = (Elf_Phdr *)malloc(phsize, M_TEMP, M_WAITOK);
387 Elf_Phdr *ephp = &ph[i];
  /src/sys/dev/
kloader.c 103 STATIC void kloader_load_segment(Elf_Phdr *);
172 Elf_Phdr *ph, *p;
571 kloader_load_segment(Elf_Phdr *p)
  /src/sys/lib/libunwind/
AddressSpace.hpp 414 const Elf_Phdr *hdr = info->dlpi_phdr;
415 const Elf_Phdr *last_hdr = hdr + info->dlpi_phnum;
  /src/tools/amiga-elf2bb/sys/
exec_elf.h 709 #define Elf_Phdr Elf32_Phdr
732 #define Elf_Phdr Elf64_Phdr
  /src/sys/arch/atari/stand/tostools/libtos/
exec_elf.h 616 #define Elf_Phdr Elf32_Phdr

Completed in 23 milliseconds

1 2