HomeSort by relevance Sort by last modified time
    Searched refs:auxv (Results 1 - 22 of 22) sorted by null

  /external/fio/arch/
arch-sh.h 45 Elf32_auxv_t *auxv; local
50 for (auxv = (Elf32_auxv_t *) envp; auxv->a_type != AT_NULL; auxv++) {
51 if (auxv->a_type == AT_HWCAP) {
52 if (auxv->a_un.a_val & CPU_HAS_LLSC) {
  /external/valgrind/main/memcheck/tests/linux/
proc-auxv.c 15 ElfW(auxv_t) auxv;
26 ; /* Skip, skip, skip... and after finding a NULL we have the auxv. */
39 int fd = open("/proc/self/auxv", O_RDONLY);
43 while (read(fd, &auxv, sizeof(auxv)) == sizeof(auxv))
45 if (auxv.a_type == AT_ENTRY)
46 entry1 = (void *) auxv.a_un.a_val;
47 if (auxv.a_type == AT_PLATFORM)
48 platform1 = strdup((char *) auxv.a_un.a_val)
    [all...]
  /bionic/libc/private/
KernelArgumentBlock.h 23 #include <sys/auxv.h>
49 auxv = reinterpret_cast<ElfW(auxv_t)*>(p);
56 for (ElfW(auxv_t)* v = auxv; v->a_type != AT_NULL; ++v) {
73 ElfW(auxv_t)* auxv; member in class:KernelArgumentBlock
  /external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
shim_entry.c 19 Elf32_auxv_t *auxv = nacl_startup_auxv(info); local
22 for (Elf32_auxv_t *av = auxv; av->a_type != AT_NULL; ++av) {
36 * Overwrite the auxv slot with the pnacl IRT shim query function.
49 * Thus we always wrap _start, even if there is no IRT auxv entry.
  /external/elfutils/0.153/libelf/
gelf_update_auxv.c 91 Elf32_auxv_t *auxv; local
109 auxv = &((Elf32_auxv_t *) data_scn->d.d_buf)[ndx];
111 auxv->a_type = src->a_type;
112 auxv->a_un.a_val = src->a_un.a_val;
  /external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/
ppapi_plugin_start.c 41 * Scan the auxv for AT_SYSINFO, which is the pointer to the IRT query function.
46 static TYPE_nacl_irt_query grok_auxv(const Elf32_auxv_t *auxv) {
48 for (av = auxv; av->a_type != AT_NULL; ++av) {
59 fatal_error("PpapiPluginStart: No AT_SYSINFO item found in auxv, "
  /bionic/libc/bionic/
getauxval.cpp 31 #include <sys/auxv.h>
libc_init_common.cpp 37 #include <sys/auxv.h>
75 __libc_auxv = args.auxv;
108 __libc_auxv = args.auxv;
dl_iterate_phdr_static.cpp 31 #include <sys/auxv.h>
libc_init_static.cpp 46 #include <sys/auxv.h>
vdso.cpp 18 #include <sys/auxv.h>
getentropy_linux.c 57 #include <sys/auxv.h>
  /external/valgrind/main/coregrind/m_initimg/
initimg-linux.c 319 | auxv |
338 The client's auxv is created by copying and modifying our own one.
339 As a side effect of scanning our own auxv, some important bits of
347 struct auxv struct
357 struct auxv *find_auxv(UWord* sp)
376 return (struct auxv *)sp;
392 struct auxv *auxv; local
393 const struct auxv *orig_auxv;
394 const struct auxv *cauxv
    [all...]
  /bionic/tests/
getauxval_test.cpp 34 #include <sys/auxv.h>
  /cts/tests/tests/os/jni/
android_os_cts_CpuFeatures.cpp 20 #include <sys/auxv.h>
  /external/ltrace/sysdeps/linux-gnu/
proc.c 457 Elf32_auxv_t auxv; local
458 if (read(fd, &auxv, sizeof(auxv)) != sizeof(auxv))
461 ret->a_type = auxv.a_type;
462 ret->a_un.a_val = auxv.a_un.a_val;
675 PROC_PID_FILE(fn, "/proc/%d/auxv", proc->pid);
  /external/elfutils/0.153/libdwfl/
core-file.c 443 const void *auxv = NULL; local
465 auxv = notes->d_buf + desc_pos;
473 used for a live process with auxv read from /proc. */
475 int listed = dwfl_link_map_report (dwfl, auxv, auxv_size,
link_map.c 75 /* Examine an auxv data block and determine its format.
78 auxv_format_probe (const void *auxv, size_t size,
86 } *u = auxv;
630 dwfl_link_map_report (Dwfl *dwfl, const void *auxv, size_t auxv_size,
638 if (likely (auxv != NULL)
639 && likely (auxv_format_probe (auxv, auxv_size, &elfclass, &elfdata)))
648 const Elf##NN##_auxv_t *av = auxv; \
libdwflP.h 446 If AUXV is not null, it points to AUXV_SIZE bytes of auxiliary vector
447 data as contained in an NT_AUXV note or read from a /proc/pid/auxv
448 file. When this is available, it guides the search. If AUXV is null
454 extern int dwfl_link_map_report (Dwfl *dwfl, const void *auxv, size_t auxv_size,
  /external/pixman/pixman/
pixman-x86.c 47 #include <sys/auxv.h>
  /external/iputils/
ping_common.h 38 #include <sys/auxv.h>
  /art/runtime/
mem_map.cc 26 #include <sys/auxv.h>
124 // No auxv on host, see above.

Completed in 768 milliseconds