Searched defs:ucontext (Results 1 – 14 of 14) sorted by relevance
15 typedef struct ucontext { struct17 struct ucontext *uc_link; argument29 #include <sys/ucontext.h> argument
66 typedef struct ucontext { struct68 struct ucontext* uc_link; argument76 #include <sys/ucontext.h> argument
4 struct ucontext { struct6 struct ucontext *uc_link; argument7 stack_t uc_stack;8 struct sigcontext uc_mcontext;9 sigset_t uc_sigmask; /* mask last for extensibility */
16 struct ucontext { struct18 struct ucontext *uc_link; argument19 stack_t uc_stack;20 struct sigcontext uc_mcontext;21 sigset_t uc_sigmask;23 int __unused[32 - (sizeof (sigset_t) / sizeof (int))];26 unsigned long uc_regspace[128] __attribute__((__aligned__(8)));
88 typedef struct ucontext { struct90 struct ucontext* uc_link; argument94 } ucontext_t; argument119 typedef struct ucontext { struct121 struct ucontext* uc_link; argument137 typedef struct ucontext { struct139 struct ucontext* uc_link; argument143 } ucontext_t; argument
950 typedef struct ucontext { struct951 uint32_t uc_flags;952 struct ucontext* uc_link;953 stack_t uc_stack;954 mcontext_t uc_mcontext;955 __sigset_t uc_sigmask;983 typedef struct ucontext { struct984 uint32_t uc_flags;985 struct ucontext* uc_link;986 stack_t uc_stack;[all …]
699 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context); in ProfilerSignalHandler() local
691 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context); in ProfilerSignalHandler() local
753 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context); in ProfilerSignalHandler() local
65 static void temp_sig_sigaction(int signum, siginfo_t *info, void *ucontext) in temp_sig_sigaction()
117 struct vki_ucontext ucontext; member
44 ucontext_t *ucontext = (ucontext_t*)context; in GetPcSpBp() local
488 void ProfileHandler::SignalHandler(int sig, siginfo_t* sinfo, void* ucontext) { in SignalHandler()