Home
last modified time | relevance | path

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

/external/ltp/testcases/kernel/syscalls/switch/
Dendian_switch01.c113 unsigned long *auxv) in main4() argument
115 for (; *auxv != AT_NULL && *auxv != AT_HWCAP; auxv += 2) in main4()
118 if (!(auxv[0] == AT_HWCAP && (auxv[1] & PPC_FEATURE_TRUE_LE))) in main4()
/external/linux-kselftest/tools/testing/selftests/powerpc/
Dutils.c27 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()
/external/elfutils/libelf/
Dgelf_update_auxv.c67 Elf32_auxv_t *auxv; in gelf_update_auxv() local
85 auxv = &((Elf32_auxv_t *) data_scn->d.d_buf)[ndx]; in gelf_update_auxv()
87 auxv->a_type = src->a_type; in gelf_update_auxv()
88 auxv->a_un.a_val = src->a_un.a_val; in gelf_update_auxv()
/external/linux-kselftest/tools/testing/selftests/x86/
Dtest_syscall_vdso.c47 Elf32_auxv_t *auxv; in get_syscall() local
50 for (auxv = (void *)envp; auxv->a_type != AT_NULL; auxv++) in get_syscall()
51 if (auxv->a_type == AT_SYSINFO) in get_syscall()
52 return auxv->a_un.a_val; in get_syscall()
/external/libpng/contrib/powerpc-vsx/
Dlinux_aux.c27 const unsigned long auxv = getauxval( AT_HWCAP ); in png_have_vsx() local
31 if(auxv & (PPC_FEATURE_HAS_ALTIVEC|PPC_FEATURE_HAS_VSX )) in png_have_vsx()
/external/elfutils/libdwfl/
Dlink_map.c102 auxv_format_probe (const void *auxv, size_t size, in auxv_format_probe() argument
107 if (do_check64 (auxv + i * sizeof (Elf64_auxv_t), elfdata)) in auxv_format_probe()
113 if (do_check32 (auxv + (i * 2) * sizeof (Elf32_auxv_t), elfdata) in auxv_format_probe()
114 || do_check32 (auxv + (i * 2 + 1) * sizeof (Elf32_auxv_t), elfdata)) in auxv_format_probe()
692 dwfl_link_map_report (Dwfl *dwfl, const void *auxv, size_t auxv_size, in dwfl_link_map_report() argument
701 if (likely (auxv != NULL) in dwfl_link_map_report()
702 && likely (auxv_format_probe (auxv, auxv_size, &elfclass, &elfdata))) in dwfl_link_map_report()
713 const Elf##NN##_auxv_t *av = auxv; \ in dwfl_link_map_report()
716 const char *typep = auxv + i * sizeof (Elf##NN##_auxv_t); \ in dwfl_link_map_report()
719 const char *valp = auxv + i * sizeof (Elf##NN##_auxv_t); \ in dwfl_link_map_report()
Dcore-file.c488 const void *auxv = NULL; in dwfl_core_file_report() local
515 auxv = notes->d_buf + desc_pos; in dwfl_core_file_report()
532 int retval = dwfl_link_map_report (dwfl, auxv, auxv_size, in dwfl_core_file_report()
DlibdwflP.h706 extern int dwfl_link_map_report (Dwfl *dwfl, const void *auxv, size_t auxv_size,
DChangeLog137 a, possibly unaligned, auxv entry pointer.
139 possibly unaligned auxv entry pointer.
1490 (grovel_auxv): Detect 32-bit vs. 64-bit auxv, possibly call
1537 (dwfl_link_map_report): Handle unaligned auxv data.
/external/linux-kselftest/tools/testing/selftests/vDSO/
Dparse_vdso.c43 extern void vdso_init_from_auxv(void *auxv);
260 void vdso_init_from_auxv(void *auxv) in vdso_init_from_auxv() argument
262 ELF(auxv_t) *elf_auxv = auxv; in vdso_init_from_auxv()
Dvdso_test.c22 extern void vdso_init_from_auxv(void *auxv);
Dvdso_standalone_test_x86.c21 extern void vdso_init_from_auxv(void *auxv);
/external/skia/src/core/
DSkCpu.cpp73 #elif defined(SK_CPU_ARM64) && __has_include(<sys/auxv.h>)
87 #elif defined(SK_CPU_ARM32) && __has_include(<sys/auxv.h>) && \
/external/skqp/src/core/
DSkCpu.cpp73 #elif defined(SK_CPU_ARM64) && __has_include(<sys/auxv.h>)
87 #elif defined(SK_CPU_ARM32) && __has_include(<sys/auxv.h>) && \
/external/linux-kselftest/tools/testing/selftests/powerpc/include/
Dutils.h30 void *find_auxv_entry(int type, char *auxv);
/external/kernel-headers/original/uapi/linux/
Dprctl.h146 __u64 *auxv; /* auxiliary vector */ member
/external/google-breakpad/src/client/linux/minidump_writer/
Dlinux_dumper.h94 const wasteful_vector<elf_aux_val_t>& auxv() { return auxv_; } in auxv() function
Dlinux_ptrace_dumper_unittest.cc276 reinterpret_cast<void *>(dumper.auxv()[AT_SYSINFO_EHDR]); in TEST_F()
Dminidump_writer.cc648 ElfW(Phdr)* phdr = reinterpret_cast<ElfW(Phdr) *>(dumper_->auxv()[AT_PHDR]); in WriteDSODebugStream()
650 int phnum = dumper_->auxv()[AT_PHNUM]; in WriteDSODebugStream()
/external/google-breakpad/src/tools/linux/md2core/
Dminidump-2-core.cc184 auxv(NULL), in CrashedProcess()
224 const uint8_t* auxv; member
638 crashinfo->auxv = range.data(); in ParseAuxVector()
1184 !writea(1, crashinfo.auxv, crashinfo.auxv_length)) { in main()
/external/syzkaller/sys/linux/
Dsys.txt499 procfs_file = "auxv", "cmdline", "environ", "autogroup", "cgroup", "clear_refs", "comm", "coredump_…
/external/toolchain-utils/dejagnu/gdb_baseline/
Dx86_64-cros-linux-gnu855 Running ./gdb.base/auxv.exp ...
856 PASS: gdb.base/auxv.exp: set print sevenbit-strings
857 PASS: gdb.base/auxv.exp: set width 0
858 PASS: gdb.base/auxv.exp: tbreak 78
859 PASS: gdb.base/auxv.exp: continue
860 PASS: gdb.base/auxv.exp: info auxv on live process
861 PASS: gdb.base/auxv.exp: gcore
862 PASS: gdb.base/auxv.exp: continue
863 PASS: gdb.base/auxv.exp: continue
864 UNSUPPORTED: gdb.base/auxv.exp: generate native core dump
[all …]
Di686-pc-linux-gnu621 Running ./gdb.base/auxv.exp ...
622 PASS: gdb.base/auxv.exp: set print sevenbit-strings
623 PASS: gdb.base/auxv.exp: set width 0
624 PASS: gdb.base/auxv.exp: tbreak 78
625 PASS: gdb.base/auxv.exp: continue
626 PASS: gdb.base/auxv.exp: info auxv on live process
627 PASS: gdb.base/auxv.exp: gcore
628 PASS: gdb.base/auxv.exp: continue
629 PASS: gdb.base/auxv.exp: continue
630 UNSUPPORTED: gdb.base/auxv.exp: generate native core dump
[all …]
Darmv7a-cros-linux-gnueabi669 Running ./gdb.base/auxv.exp ...
670 PASS: gdb.base/auxv.exp: set print sevenbit-strings
671 PASS: gdb.base/auxv.exp: set width 0
672 PASS: gdb.base/auxv.exp: tbreak 78
673 PASS: gdb.base/auxv.exp: continue
674 PASS: gdb.base/auxv.exp: info auxv on live process
675 PASS: gdb.base/auxv.exp: gcore
676 PASS: gdb.base/auxv.exp: continue
677 PASS: gdb.base/auxv.exp: continue
678 UNSUPPORTED: gdb.base/auxv.exp: generate native core dump
[all …]
/external/libpng/
DCHANGES4415 1003.1 API to check /proc/self/auxv avoiding buffer allocation and other
4854 is in contrib/arm-neon/linux-auxv.c. The new code avoids POSIX and Linux