Searched refs:AT_EXECPATH (Results 1 - 12 of 12) sorted by relevance

/freebsd-11-stable/sys/riscv/include/
H A Delf.h84 #define AT_EXECPATH 15 /* Path to the executable. */ macro
/freebsd-11-stable/sys/sparc64/include/
H A Delf.h86 #define AT_EXECPATH 15 /* Path to the executable. */ macro
/freebsd-11-stable/sys/arm64/include/
H A Delf.h84 #define AT_EXECPATH 15 /* Path to the executable. */ macro
/freebsd-11-stable/sys/x86/include/
H A Delf.h94 #define AT_EXECPATH 15 /* Path to the executable. */ macro
182 #define AT_EXECPATH 15 /* Path to the executable. */ macro
/freebsd-11-stable/sys/powerpc/include/
H A Delf.h101 #define AT_EXECPATH 13 /* Path to the executable. */ macro
/freebsd-11-stable/sys/arm/include/
H A Delf.h78 #define AT_EXECPATH 15 /* Path to the executable. */ macro
/freebsd-11-stable/sys/mips/include/
H A Delf.h138 #define AT_EXECPATH 15 /* Path to the executable. */ macro
/freebsd-11-stable/usr.bin/procstat/
H A Dprocstat_auxv.c137 case AT_EXECPATH:
138 xo_emit("{dw:/%s}{Lw:/%-16s/%s}{:AT_EXECPATH/%p}\n",
139 prefix, "AT_EXECPATH", auxv[i].a_un.a_ptr);
/freebsd-11-stable/lib/libc/gen/
H A Ddlfcn.c179 case AT_EXECPATH:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc201 if (elf_aux_info(AT_EXECPATH, exe_path, sizeof(exe_path)) == 0)
204 // elf_aux_info(AT_EXECPATH, ... is not available in all supported versions,
210 // Iterate through auxiliary vectors for AT_EXECPATH.
212 if (*(uintptr_t *)p++ == AT_EXECPATH)
/freebsd-11-stable/libexec/rtld-elf/
H A Drtld.c521 /* XXXKIB insert place for AT_EXECPATH if not present */
528 /* Point AT_EXECPATH auxv and aux_info to the binary path. */
530 aux_info[AT_EXECPATH] = NULL;
532 if (aux_info[AT_EXECPATH] == NULL) {
533 aux_info[AT_EXECPATH] = xmalloc(sizeof(Elf_Auxinfo));
534 aux_info[AT_EXECPATH]->a_type = AT_EXECPATH;
536 aux_info[AT_EXECPATH]->a_un.a_ptr = __DECONST(void *,
627 if (aux_info[AT_EXECPATH] != NULL && fd == -1) {
628 kexecpath = aux_info[AT_EXECPATH]
[all...]
/freebsd-11-stable/sys/kern/
H A Dimgact_elf.c1132 AUXARGS_ENTRY(pos, AT_EXECPATH, imgp->execpathp);

Completed in 121 milliseconds