Home
last modified time | relevance | path

Searched refs:auxp (Results 1 – 6 of 6) sorted by relevance

/freebsd/lib/libc/gen/
H A Ddlfcn.c177 Elf_Auxinfo *auxp; in dl_init_phdr_info() local
180 for (auxp = __elf_aux_vector; auxp->a_type != AT_NULL; auxp++) { in dl_init_phdr_info()
181 switch (auxp->a_type) { in dl_init_phdr_info()
183 phdr_info.dlpi_addr = (Elf_Addr)auxp->a_un.a_ptr; in dl_init_phdr_info()
186 phdr_info.dlpi_name = (const char *)auxp->a_un.a_ptr; in dl_init_phdr_info()
190 (const Elf_Phdr *)auxp->a_un.a_ptr; in dl_init_phdr_info()
193 phdr_info.dlpi_phnum = (Elf_Half)auxp->a_un.a_val; in dl_init_phdr_info()
H A Dtls.c406 Elf_Auxinfo *aux, *auxp; in _init_tls() local
418 for (auxp = aux; auxp->a_type != AT_NULL; auxp++) { in _init_tls()
419 switch (auxp->a_type) { in _init_tls()
421 phdr = auxp->a_un.a_ptr; in _init_tls()
425 phent = auxp->a_un.a_val; in _init_tls()
429 phnum = auxp->a_un.a_val; in _init_tls()
/freebsd/libexec/rtld-elf/powerpc64/
H A Dreloc.c729 Elf_Auxinfo *auxp; in arch_fix_auxv() local
731 for (auxp = aux; auxp->a_type != AT_NULL; auxp++) { in arch_fix_auxv()
732 if (auxp->a_type == 23) /* AT_STACKPROT */ in arch_fix_auxv()
/freebsd/contrib/flex/src/
H A Dscanopt.c662 struct _aux *auxp; in scanopt() local
755 auxp = s->aux + opt_offset; in scanopt()
758 if (auxp->flags & ARG_NONE) { in scanopt()
772 if (auxp->flags & ARG_REQ) { in scanopt()
789 if (auxp->flags & ARG_OPT) { in scanopt()
/freebsd/libexec/rtld-elf/powerpc/
H A Dreloc.c832 Elf_Auxinfo *auxp; in arch_fix_auxv() local
834 for (auxp = aux; auxp->a_type != AT_NULL; auxp++) { in arch_fix_auxv()
835 if (auxp->a_type == 23) /* AT_STACKPROT */ in arch_fix_auxv()
/freebsd/libexec/rtld-elf/
H A Drtld.c534 Elf_Auxinfo *aux, *auxp, *auxpf, *aux_info[AT_COUNT], auxtmp; in _rtld() local
571 for (auxp = aux; auxp->a_type != AT_NULL; auxp++) { in _rtld()
572 if (auxp->a_type < AT_COUNT) in _rtld()
573 aux_info[auxp->a_type] = auxp; in _rtld()
680 aux = auxp = (Elf_Auxinfo *)envp; in _rtld()
687 for (;; auxp++, auxpf++) { in _rtld()
693 *auxp = auxtmp; in _rtld()
694 if (auxp->a_type == AT_NULL) in _rtld()
703 for (auxp = aux; auxp->a_type != AT_NULL; in _rtld()
704 auxp++) { in _rtld()
[all …]