HomeSort by relevance Sort by last modified time
    Searched refs:ucontext (Results 1 - 25 of 43) sorted by null

1 2

  /bionic/libc/kernel/arch-mips/asm/
ucontext.h 19 #include <asm-generic/ucontext.h>
  /external/kernel-headers/original/asm-mips/
ucontext.h 1 #include <asm-generic/ucontext.h>
  /bionic/libc/kernel/common/asm-generic/
ucontext.h 21 struct ucontext { struct
24 struct ucontext *uc_link;
  /external/kernel-headers/original/asm-generic/
ucontext.h 4 struct ucontext { struct
6 struct ucontext *uc_link;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
ucontext.h 4 struct ucontext { struct
6 struct ucontext *uc_link;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
ucontext.h 4 struct ucontext { struct
6 struct ucontext *uc_link;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
ucontext.h 4 struct ucontext { struct
6 struct ucontext *uc_link;
  /bionic/libc/kernel/arch-x86/asm/
ucontext.h 22 #include <asm-generic/ucontext.h>
  /external/kernel-headers/original/asm-x86/
ucontext.h 6 * by the fpstate pointer in the ucontext's
10 #include <asm-generic/ucontext.h>
  /bionic/libc/kernel/arch-arm/asm/
ucontext.h 22 struct ucontext { struct
25 struct ucontext *uc_link;
  /external/compiler-rt/lib/asan/
asan_linux.cc 36 // FIXME: where to get ucontext on Android?
37 #include <sys/ucontext.h>
57 ucontext_t *ucontext = (ucontext_t*)context;
58 *pc = ucontext->uc_mcontext.arm_pc;
59 *bp = ucontext->uc_mcontext.arm_fp;
60 *sp = ucontext->uc_mcontext.arm_sp;
62 ucontext_t *ucontext = (ucontext_t*)context;
63 *pc = ucontext->uc_mcontext.gregs[REG_RIP];
64 *bp = ucontext->uc_mcontext.gregs[REG_RBP];
65 *sp = ucontext->uc_mcontext.gregs[REG_RSP]
    [all...]
asan_mac.cc 33 #include <sys/ucontext.h>
44 ucontext_t *ucontext = (ucontext_t*)context; local
46 *pc = ucontext->uc_mcontext->__ss.__rip;
47 *bp = ucontext->uc_mcontext->__ss.__rbp;
48 *sp = ucontext->uc_mcontext->__ss.__rsp;
50 *pc = ucontext->uc_mcontext->__ss.__eip;
51 *bp = ucontext->uc_mcontext->__ss.__ebp;
52 *sp = ucontext->uc_mcontext->__ss.__esp;
  /external/kernel-headers/original/asm-arm/
ucontext.h 8 * ucontext now has room for all registers which need to be saved and
16 struct ucontext { struct
18 struct ucontext *uc_link;
  /external/valgrind/main/none/tests/s390x/
ex_sig.c 8 #include <ucontext.h>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
ucontext.h 27 #include <sys/ucontext.h>
53 #endif /* ucontext.h */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
ucontext.h 27 #include <sys/ucontext.h>
53 #endif /* ucontext.h */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
ucontext.h 27 #include <sys/ucontext.h>
53 #endif /* ucontext.h */
  /external/valgrind/main/memcheck/tests/linux/
stack_changes.c 3 #include <ucontext.h>
13 typedef struct ucontext mycontext;
  /system/core/libcorkscrew/arch-x86/
backtrace-x86.c 42 #include <asm/ucontext.h>
43 typedef struct ucontext ucontext_t;
65 typedef struct ucontext { struct
67 struct ucontext* uc_link;
79 #include <ucontext.h>
  /external/valgrind/main/memcheck/tests/amd64-linux/
int3-amd64.c 7 #include <sys/ucontext.h>
  /external/valgrind/main/memcheck/tests/x86-linux/
int3-x86.c 7 #include <sys/ucontext.h>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
ucontext.h 135 typedef struct ucontext struct
138 struct ucontext *uc_link;
236 typedef struct ucontext struct
239 struct ucontext *uc_link;
248 #endif /* sys/ucontext.h */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
ucontext.h 135 typedef struct ucontext struct
138 struct ucontext *uc_link;
236 typedef struct ucontext struct
239 struct ucontext *uc_link;
248 #endif /* sys/ucontext.h */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
ucontext.h 135 typedef struct ucontext struct
138 struct ucontext *uc_link;
236 typedef struct ucontext struct
239 struct ucontext *uc_link;
248 #endif /* sys/ucontext.h */
  /external/qemu/target-i386/
kvm-gs-restore.c 65 static void temp_sig_sigaction(int signum, siginfo_t *info, void *ucontext)
77 o_sigact[signum].old_sigaction(signum, info, ucontext);

Completed in 797 milliseconds

1 2