Searched refs:ucontext (Results 1 - 25 of 50) sorted by relevance

12

/external/kernel-headers/original/asm-mips/
H A Ducontext.h1 #include <asm-generic/ucontext.h>
/external/kernel-headers/original/asm-generic/
H A Ducontext.h4 struct ucontext { struct
6 struct ucontext *uc_link;
/external/kernel-headers/original/asm-x86/
H A Ducontext.h6 * by the fpstate pointer in the ucontext's
10 #include <asm-generic/ucontext.h>
/external/compiler-rt/lib/asan/
H A Dasan_linux.cc36 // 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
[all...]
H A Dasan_mac.cc34 #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/chromium_org/sandbox/linux/services/
H A Dandroid_arm_ucontext.h15 typedef struct ucontext { struct
17 struct ucontext *uc_link;
29 #include <sys/ucontext.h>
H A Dandroid_i386_ucontext.h10 // This is mostly copied from breakpad (common/android/include/sys/ucontext.h),
66 typedef struct ucontext { struct
68 struct ucontext* uc_link;
76 #include <sys/ucontext.h>
/external/kernel-headers/original/asm-arm/
H A Ducontext.h8 * ucontext now has room for all registers which need to be saved and
16 struct ucontext { struct
18 struct ucontext *uc_link;
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dprofile-handler.h94 void* ucontext, void* callback_arg);
H A Dgetpc.h59 #include <sys/ucontext.h>
61 #include <ucontext.h> // for ucontext_t (and also mcontext_t)
64 typedef ucontext ucontext_t;
108 // The dereferences needed to get the PC from a struct ucontext were
181 // Bionic doesn't export ucontext, see
H A Dprofiler.cc47 #include <sys/ucontext.h>
49 #include <ucontext.h>
52 typedef ucontext ucontext_t;
H A Dstacktrace_x86-inl.h44 #include <sys/ucontext.h>
46 #include <ucontext.h> // for ucontext_t
54 typedef ucontext ucontext_t;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dprofile-handler.h94 void* ucontext, void* callback_arg);
H A Dgetpc.h59 #include <sys/ucontext.h>
61 #include <ucontext.h> // for ucontext_t (and also mcontext_t)
64 typedef ucontext ucontext_t;
106 // The dereferences needed to get the PC from a struct ucontext were
H A Dprofiler.cc47 #include <sys/ucontext.h>
49 #include <ucontext.h>
52 typedef ucontext ucontext_t;
H A Dstacktrace_x86-inl.h44 #include <sys/ucontext.h>
46 #include <ucontext.h> // for ucontext_t
54 typedef ucontext ucontext_t;
/external/valgrind/main/none/tests/s390x/
H A Dex_sig.c8 #include <ucontext.h>
/external/valgrind/main/memcheck/tests/linux/
H A Dstack_changes.c3 #include <ucontext.h>
13 typedef struct ucontext mycontext;
/external/valgrind/main/memcheck/tests/amd64-linux/
H A Dint3-amd64.c7 #include <sys/ucontext.h>
/external/valgrind/main/memcheck/tests/x86-linux/
H A Dint3-x86.c7 #include <sys/ucontext.h>
/external/chromium_org/v8/src/
H A Dsampler.cc42 // OpenBSD doesn't have <ucontext.h>. ucontext_t lives in <signal.h>
46 #include <ucontext.h>
88 typedef struct ucontext { struct
90 struct ucontext* uc_link;
119 typedef struct ucontext { struct
121 struct ucontext* uc_link;
137 typedef struct ucontext { struct
139 struct ucontext* uc_link;
326 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context);
328 mcontext_t& mcontext = ucontext
[all...]
/external/qemu/target-i386/
H A Dkvm-gs-restore.c65 static void temp_sig_sigaction(int signum, siginfo_t *info, void *ucontext) argument
77 o_sigact[signum].old_sigaction(signum, info, ucontext);
/external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
H A Dswapcontext_test.cc12 #include <ucontext.h>
/external/valgrind/main/none/tests/x86-linux/
H A Dsigcontext.c6 #include <sys/ucontext.h>
/external/qemu/
H A Dcpu-exec.c39 #include <sys/ucontext.h>
72 struct ucontext *uc = puc;
853 # include <sys/ucontext.h>
860 # include <ucontext.h>
867 # include <ucontext.h>
894 struct ucontext *uc = puc;
926 #include <ucontext.h>
949 struct ucontext *uc = puc;
986 #include <ucontext.h>
1000 # include <sys/ucontext
[all...]

Completed in 2181 milliseconds

12