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

  /external/qemu/
cache-utils.c 26 unsigned long *auxv; local
30 for (auxv = (unsigned long *) envp; *auxv != QEMU_AT_NULL; auxv += 2) {
31 switch (*auxv) {
32 case QEMU_AT_DCACHEBSIZE: qemu_cache_conf.dcache_bsize = auxv[1]; break;
33 case QEMU_AT_ICACHEBSIZE: qemu_cache_conf.icache_bsize = auxv[1]; break;
  /bionic/libc/private/
KernelArgumentBlock.h 22 #include <sys/auxv.h>
46 auxv = reinterpret_cast<Elf32_auxv_t*>(p);
53 for (Elf32_auxv_t* v = auxv; v->a_type != AT_NULL; ++v) {
70 Elf32_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.
  /bionic/libc/bionic/
getauxval.cpp 31 #include <sys/auxv.h>
libc_init_common.cpp 39 #include <sys/auxv.h>
94 __libc_auxv = args.auxv;
115 __libc_auxv = args.auxv;
dl_iterate_phdr_static.c 30 #include <sys/auxv.h>
libc_init_static.cpp 46 #include <sys/auxv.h>
  /external/elfutils/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, "
  /external/valgrind/main/coregrind/m_initimg/
initimg-linux.c 323 | auxv |
342 The client's auxv is created by copying and modifying our own one.
343 As a side effect of scanning our own auxv, some important bits of
351 struct auxv struct
361 struct auxv *find_auxv(UWord* sp)
380 return (struct auxv *)sp;
396 struct auxv *auxv; local
397 const struct auxv *orig_auxv;
398 const struct auxv *cauxv
    [all...]
  /bionic/tests/
getauxval_test.cpp 35 #include <sys/auxv.h>
  /external/elfutils/libdwfl/
core-file.c 421 const void *auxv = NULL; local
443 auxv = notes->d_buf + desc_pos;
451 used for a live process with auxv read from /proc. */
453 return 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;
635 dwfl_link_map_report (Dwfl *dwfl, const void *auxv, size_t auxv_size,
643 if (likely (auxv != NULL)
644 && likely (auxv_format_probe (auxv, auxv_size, &elfclass, &elfdata)))
653 const Elf##NN##_auxv_t *av = auxv; \
libdwflP.h 350 If AUXV is not null, it points to AUXV_SIZE bytes of auxiliary vector
351 data as contained in an NT_AUXV note or read from a /proc/pid/auxv
352 file. When this is available, it guides the search. If AUXV is null
358 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>

Completed in 1304 milliseconds