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

  /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;
  /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/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;
  /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,
  /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...]

Completed in 80 milliseconds