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

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

Completed in 781 milliseconds