Home
last modified time | relevance | path

Searched defs:ucontext (Results 1 – 18 of 18) sorted by relevance

/third_party/Linux_Kernel/include/uapi/asm-generic/
Ducontext.h4 struct ucontext { struct
6 struct ucontext *uc_link; argument
7 stack_t uc_stack;
8 struct sigcontext uc_mcontext;
9 sigset_t uc_sigmask; /* mask last for extensibility */
/third_party/Linux_Kernel/arch/arm/include/asm/
Ducontext.h16 struct ucontext { struct
18 struct ucontext *uc_link; argument
19 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)));
/third_party/libunwind/include/win/sys/
Ducontext.h26 typedef struct ucontext struct
37 // Windows SDK defines reserved. It conflicts with arm64 ucontext argument
/third_party/libunwind/include/mingw/sys/
Ducontext.h23 typedef struct ucontext struct
34 // Windows SDK defines reserved. It conflicts with arm64 ucontext argument
/third_party/abseil-cpp/absl/debugging/
Dfailure_signal_handler.cc254 void* ucontext, bool symbolize_stacktrace, in WriteStackTrace()
272 static void WriteFailureInfo(int signo, void* ucontext, in WriteFailureInfo()
312 void* ucontext = nullptr; in AbslFailureSignalHandler() local
/third_party/libunwind/tests/
DLtest-init-local-signal.c29 void handler(int num, siginfo_t* info, void* ucontext) { in handler()
Dx64-unwind-badjmp-signal-frame.c45 void handle_sigsegv(int signal, siginfo_t *info, void *ucontext) in handle_sigsegv()
Dtest-coredump-unwind.c211 void handle_sigsegv(int sig, siginfo_t *info, void *ucontext) in handle_sigsegv()
/third_party/libunwind/src/ppc32/
DGstep.c135 unw_word_t ucontext = c->dwarf.cfa + __SIGNAL_FRAMESIZE; in unw_step() local
/third_party/libunwind/src/x86_64/
DGos-solaris.c53 unw_word_t ucontext = c->dwarf.cfa + sizeof (struct sigframe); in x86_64_handle_signal_frame() local
DGos-freebsd.c94 unw_word_t ucontext; in x86_64_handle_signal_frame() local
/third_party/ltp/testcases/kernel/syscalls/pidfd_send_signal/
Dpidfd_send_signal01.c26 static void received_signal(int sig, siginfo_t *info, void *ucontext) in received_signal()
/third_party/ltp/testcases/kernel/syscalls/rt_sigqueueinfo/
Drt_sigqueueinfo01.c33 static void received_signal(int sig, siginfo_t *info, void *ucontext) in received_signal()
/third_party/libunwind/src/ppc64/
DGstep.c135 unw_word_t ucontext = c->dwarf.cfa + __SIGNAL_FRAMESIZE; in unw_step() local
/third_party/ltp/testcases/kernel/syscalls/clone3/
Dclone301.c39 static void child_rx_signal(int sig, siginfo_t *info, void *ucontext) in child_rx_signal()
/third_party/ltp/testcases/cve/
Dmeltdown.c108 ucontext_t *ucontext = context; in sigsegv() local
/third_party/node/src/
Dnode.cc468 void TrapWebAssemblyOrContinue(int signo, siginfo_t* info, void* ucontext) { in TrapWebAssemblyOrContinue()
/third_party/python/Lib/lib2to3/tests/data/
Dinfinite_recursion.py2218 class ucontext(Structure): class