Searched defs:ucontext (Results 1 - 14 of 14) sorted by relevance

/external/kernel-headers/original/asm-generic/
H A Ducontext.h4 struct ucontext { struct
6 struct ucontext *uc_link;
/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/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/valgrind/main/coregrind/m_sigframe/
H A Dsigframe-ppc32-linux.c117 struct vki_ucontext ucontext; member in struct:rt_sigframe
245 //:: /* ptr to ucontext */
713 struct vki_ucontext *ucp = &frame->ucontext;
721 VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal frame ucontext",
729 VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal frame ucontext",
904 mc = &frame->ucontext.uc_mcontext;
907 tst->sig_mask = frame->ucontext.uc_sigmask;
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dprofile-handler.cc211 static void SignalHandler(int sig, siginfo_t* sinfo, void* ucontext);
488 void ProfileHandler::SignalHandler(int sig, siginfo_t* sinfo, void* ucontext) { argument
501 (*it)->callback(sig, sinfo, ucontext, (*it)->callback_arg);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dprofile-handler.cc211 static void SignalHandler(int sig, siginfo_t* sinfo, void* ucontext);
488 void ProfileHandler::SignalHandler(int sig, siginfo_t* sinfo, void* ucontext) { argument
501 (*it)->callback(sig, sinfo, ucontext, (*it)->callback_arg);
/external/compiler-rt/lib/asan/
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/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/v8/src/
H A Dplatform-freebsd.cc37 #include <sys/ucontext.h>
699 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context); local
700 mcontext_t& mcontext = ucontext->uc_mcontext;
H A Dplatform-linux.cc950 typedef struct ucontext { struct in namespace:v8::internal
952 struct ucontext* uc_link;
983 typedef struct ucontext { struct in namespace:v8::internal
985 struct ucontext* uc_link;
1002 typedef struct ucontext { struct in namespace:v8::internal
1004 struct ucontext* uc_link;
1044 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context); local
1045 mcontext_t& mcontext = ucontext->uc_mcontext;
H A Dplatform-openbsd.cc753 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context); local
755 mcontext_t& mcontext = ucontext->uc_mcontext;
767 sample->pc = reinterpret_cast<Address>(ucontext->sc_eip);
768 sample->sp = reinterpret_cast<Address>(ucontext->sc_esp);
769 sample->fp = reinterpret_cast<Address>(ucontext->sc_ebp);
771 sample->pc = reinterpret_cast<Address>(ucontext->sc_rip);
772 sample->sp = reinterpret_cast<Address>(ucontext->sc_rsp);
773 sample->fp = reinterpret_cast<Address>(ucontext->sc_rbp);
H A Dplatform-solaris.cc38 #include <ucontext.h> // walkstack(), getcontext()
691 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context); local
692 mcontext_t& mcontext = ucontext->uc_mcontext;

Completed in 186 milliseconds