/linux/arch/um/os-Linux/ |
A D | elf_aux.c | 29 elf_auxv_t * auxv; in scan_elf_aux() local 33 for ( auxv = (elf_auxv_t *)envp; auxv->a_type != AT_NULL; auxv++) { in scan_elf_aux() 34 switch ( auxv->a_type ) { in scan_elf_aux() 36 __kernel_vsyscall = auxv->a_un.a_val; in scan_elf_aux() 42 vsyscall_ehdr = auxv->a_un.a_val; in scan_elf_aux() 48 elf_aux_hwcap = auxv->a_un.a_val; in scan_elf_aux() 56 (char *) (long) auxv->a_un.a_val; in scan_elf_aux() 59 page_size = auxv->a_un.a_val; in scan_elf_aux()
|
/linux/tools/testing/selftests/arm64/bti/ |
A D | test.c | 167 } *auxv; in start() local 180 for (auxv = (const struct auxv_entry *)p; auxv->type != AT_NULL; ++auxv) { in start() 181 switch (auxv->type) { in start() 183 hwcap = auxv->val; in start() 186 hwcap2 = auxv->val; in start()
|
/linux/tools/testing/selftests/x86/ |
A D | test_syscall_vdso.c | 38 Elf32_auxv_t *auxv; in get_syscall() local 41 for (auxv = (void *)envp; auxv->a_type != AT_NULL; auxv++) in get_syscall() 42 if (auxv->a_type == AT_SYSINFO) in get_syscall() 43 return auxv->a_un.a_val; in get_syscall()
|
/linux/tools/testing/selftests/powerpc/ |
A D | utils.c | 27 static char auxv[4096]; variable 59 void *find_auxv_entry(int type, char *auxv) in find_auxv_entry() argument 63 p = (ElfW(auxv_t) *)auxv; in find_auxv_entry() 79 if (read_auxv(auxv, sizeof(auxv))) in get_auxv_entry() 82 p = find_auxv_entry(type, auxv); in get_auxv_entry()
|
/linux/Documentation/sparc/ |
A D | adi.rst | 189 Elf64_auxv_t *auxv; 194 for (auxv = (Elf64_auxv_t *)envp; auxv->a_type != AT_NULL; auxv++) { 195 switch (auxv->a_type) { 197 adi_blksz = auxv->a_un.a_val; 200 adi_nbits = auxv->a_un.a_val;
|
/linux/tools/testing/selftests/vDSO/ |
A D | parse_vdso.h | 29 void vdso_init_from_auxv(void *auxv);
|
A D | parse_vdso.c | 235 void vdso_init_from_auxv(void *auxv) in vdso_init_from_auxv() argument 237 ELF(auxv_t) *elf_auxv = auxv; in vdso_init_from_auxv()
|
A D | vdso_test_abi.c | 26 extern void vdso_init_from_auxv(void *auxv);
|
/linux/tools/testing/selftests/powerpc/include/ |
A D | utils.h | 31 void *find_auxv_entry(int type, char *auxv);
|
/linux/tools/include/uapi/linux/ |
A D | prctl.h | 146 __u64 *auxv; /* auxiliary vector */ member
|
/linux/include/uapi/linux/ |
A D | prctl.h | 146 __u64 *auxv; /* auxiliary vector */ member
|
/linux/Documentation/x86/ |
A D | elf_auxvec.rst | 16 #include <sys/auxv.h>
|
/linux/fs/ |
A D | binfmt_elf.c | 1595 elf_addr_t *auxv = (elf_addr_t *) mm->saved_auxv; in fill_auxv_note() local 1599 while (auxv[i - 2] != AT_NULL); in fill_auxv_note() 1600 fill_note(note, "CORE", NT_AUXV, i * sizeof(elf_addr_t), auxv); in fill_auxv_note() 1718 struct memelfnote auxv; member 1887 fill_auxv_note(&info->auxv, current->mm); in fill_note_info() 1888 info->size += notesize(&info->auxv); in fill_note_info() 1921 if (first && !writenote(&info->auxv, cprm)) in write_note_info()
|
A D | binfmt_elf_fdpic.c | 1476 elf_addr_t *auxv; in elf_fdpic_core_dump() local 1539 auxv = (elf_addr_t *) current->mm->saved_auxv; in elf_fdpic_core_dump() 1543 while (auxv[i - 2] != AT_NULL); in elf_fdpic_core_dump() 1544 fill_note(&auxv_note, "CORE", NT_AUXV, i * sizeof(elf_addr_t), auxv); in elf_fdpic_core_dump()
|
/linux/Documentation/x86/x86_64/ |
A D | fsgs.rst | 110 #include <sys/auxv.h>
|
/linux/Documentation/arm64/ |
A D | cpu-feature-registers.rst | 310 #include <sys/auxv.h>
|
A D | memory-tagging-extension.rst | 231 #include <sys/auxv.h>
|
/linux/kernel/ |
A D | sys.c | 1974 if (!prctl_map.auxv || in prctl_set_mm_map() 1980 (const void __user *)prctl_map.auxv, in prctl_set_mm_map() 2089 .auxv = NULL, in prctl_set_mm()
|