Searched refs:auxv (Results 1 - 25 of 54) sorted by relevance

123

/linux-master/arch/um/os-Linux/
H A Delf_aux.c29 elf_auxv_t * auxv; local
33 for ( auxv = (elf_auxv_t *)envp; auxv->a_type != AT_NULL; auxv++) {
34 switch ( auxv->a_type ) {
36 __kernel_vsyscall = auxv->a_un.a_val;
42 vsyscall_ehdr = auxv->a_un.a_val;
48 elf_aux_hwcap = auxv->a_un.a_val;
56 (char *) (long) auxv->a_un.a_val;
59 page_size = auxv
[all...]
/linux-master/tools/testing/selftests/vDSO/
H A Dparse_vdso.h10 * If you've already parsed auxv, then pass the value of AT_SYSINFO_EHDR
11 * to vdso_init_from_sysinfo_ehdr. Otherwise pass auxv to vdso_init_from_auxv.
29 void vdso_init_from_auxv(void *auxv);
H A Dvdso_test_gettimeofday.c16 #include <sys/auxv.h>
H A Dvdso_test_getcpu.c11 #include <sys/auxv.h>
H A Dvdso_test_clock_getres.c22 #include <sys/auxv.h>
H A Dvdso_test_abi.c15 #include <sys/auxv.h>
26 extern void vdso_init_from_auxv(void *auxv);
/linux-master/tools/include/nolibc/
H A Dcrt.h33 const unsigned long *auxv; local
65 for (auxv = (void *)envp; *auxv++;)
67 _auxv = auxv;
H A Dstdlib.h107 const unsigned long *auxv = _auxv; local
110 if (!auxv)
114 if (!auxv[0] && !auxv[1]) {
119 if (auxv[0] == type) {
120 ret = auxv[1];
124 auxv += 2;
/linux-master/lib/raid6/
H A Dloongarch.h20 #include <sys/auxv.h>
/linux-master/tools/testing/selftests/arm64/bti/
H A Dtest.c160 } *auxv; local
173 for (auxv = (const struct auxv_entry *)p; auxv->type != AT_NULL; ++auxv) {
174 switch (auxv->type) {
176 hwcap = auxv->val;
179 hwcap2 = auxv->val;
/linux-master/tools/testing/selftests/arm64/pauth/
H A Dexec_target.c6 #include <sys/auxv.h>
/linux-master/tools/testing/selftests/arm64/fp/
H A Dsve-probe-vls.c11 #include <sys/auxv.h>
H A Dvlset.c16 #include <sys/auxv.h>
/linux-master/tools/testing/selftests/capabilities/
H A Dvalidate_cap.c8 #include <sys/auxv.h>
/linux-master/tools/testing/selftests/x86/
H A Dtest_syscall_vdso.c38 Elf32_auxv_t *auxv; local
41 for (auxv = (void *)envp; auxv->a_type != AT_NULL; auxv++)
42 if (auxv->a_type == AT_SYSINFO)
43 return auxv->a_un.a_val;
H A Dtest_mremap_vdso.c19 #include <sys/auxv.h>
H A Dsigaltstack.c12 #include <sys/auxv.h>
/linux-master/tools/testing/selftests/arm64/mte/
H A Dcheck_prctl.c8 #include <sys/auxv.h>
H A Dcheck_gcr_el1_cswitch.c13 #include <sys/auxv.h>
H A Dmte_common_util.h10 #include <sys/auxv.h>
/linux-master/tools/testing/selftests/arm64/signal/testcases/
H A Dtpidr2_siginfo.c11 #include <sys/auxv.h>
H A Dtpidr2_restore.c10 #include <sys/auxv.h>
H A Dfpmr_siginfo.c11 #include <sys/auxv.h>
/linux-master/tools/perf/tests/
H A Dattr.py145 # 'auxv' - Truthy statement that is evaled in the scope of the auxv map. When false,
146 # the test is skipped. For example 'auxv["AT_HWCAP"] == 10'. (optional)
179 self.auxv = parser.get('config', 'auxv', fallback=None)
216 if not self.auxv:
218 auxv = subprocess.check_output("LD_SHOW_AUXV=1 sleep 0", shell=True) \
221 auxv = dict([new_auxv(a, pattern) for a in auxv.splitlines()])
222 return not eval(self.auxv)
[all...]
/linux-master/tools/testing/selftests/powerpc/
H A Dutils.c29 static char auxv[4096]; variable
159 err = read_file("/proc/self/auxv", buf, buf_size, NULL);
161 perror("Error reading /proc/self/auxv");
387 void *find_auxv_entry(int type, char *auxv) argument
391 p = (ElfW(auxv_t) *)auxv;
407 if (read_auxv(auxv, sizeof(auxv)))
410 p = find_auxv_entry(type, auxv);

Completed in 205 milliseconds

123