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

  /external/elfutils/src/libelf/
gelf_update_auxv.c 70 Elf32_auxv_t *auxv; local
88 auxv = &((Elf32_auxv_t *) data_scn->d.d_buf)[ndx];
90 auxv->a_type = src->a_type;
91 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/google-breakpad/src/client/linux/minidump_writer/
linux_dumper.h 54 // Typedef for our parsing of the auxv variables in /proc/pid/auxv.
92 const wasteful_vector<elf_aux_val_t>& auxv() { return auxv_; } function in class:google_breakpad::LinuxDumper
181 // Info from /proc/<pid>/auxv
  /external/elfutils/src/libdwfl/
core-file.c 453 const void *auxv = NULL; local
478 auxv = notes->d_buf + desc_pos;
491 used for a live process with auxv read from /proc. */
495 int retval = 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/coregrind/m_initimg/
initimg-linux.c 321 | auxv |
340 The client's auxv is created by copying and modifying our own one.
341 As a side effect of scanning our own auxv, some important bits of
349 struct auxv struct
359 struct auxv *find_auxv(UWord* sp)
378 return (struct auxv *)sp;
400 struct auxv *auxv; local
401 const struct auxv *orig_auxv;
402 const struct auxv *cauxv
    [all...]
  /bionic/libc/kernel/uapi/linux/
prctl.h 130 __u64 * auxv; member in struct:prctl_mm_map
  /external/kernel-headers/original/uapi/linux/
prctl.h 145 __u64 *auxv; /* auxiliary vector */ member in struct:prctl_mm_map
  /external/google-breakpad/src/tools/linux/md2core/
minidump-2-core.cc 184 auxv(NULL),
224 const uint8_t* auxv; member in struct:CrashedProcess
624 // The AUXV vector contains binary data, whereas the maps always begin
636 crashinfo->auxv = range.data();
    [all...]

Completed in 624 milliseconds