/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerUtilPosix.cpp | 32 static void AlarmHandler(int, siginfo_t *, void *) { in AlarmHandler() argument 36 static void (*upstream_segv_handler)(int, siginfo_t *, void *); 38 static void SegvHandler(int sig, siginfo_t *si, void *ucontext) { in SegvHandler() 45 static void CrashHandler(int, siginfo_t *, void *) { in CrashHandler() argument 49 static void InterruptHandler(int, siginfo_t *, void *) { in InterruptHandler() argument 53 static void GracefulExitHandler(int, siginfo_t *, void *) { in GracefulExitHandler() argument 57 static void FileSizeExceedHandler(int, siginfo_t *, void *) { in FileSizeExceedHandler() argument 62 void (*callback)(int, siginfo_t *, void *)) { in SetSigaction() argument
|
/llvm-project/compiler-rt/test/asan/TestCases/Posix/ |
H A D | waitid.cpp | 18 siginfo_t *si = (siginfo_t*)(x + argc * 3); in main()
|
/llvm-project/compiler-rt/test/asan/TestCases/Linux/ |
H A D | uar_signals.cpp | 17 typedef void (*Sigaction)(int, siginfo_t *, void *); 19 void SignalHandler(int, siginfo_t*, void*) { in SignalHandler() argument
|
/llvm-project/lldb/unittests/Platform/tools/ |
H A D | generate_siginfo.c | 13 siginfo_t siginfo; 17 offsetof(siginfo_t, member), sizeof(siginfo.member));
|
/llvm-project/lldb/source/Plugins/Process/POSIX/ |
H A D | CrashReason.h | 18 std::string GetCrashReasonString(const siginfo_t &info);
|
H A D | CrashReason.cpp | 13 std::string GetCrashReasonString(const siginfo_t &info) { in GetCrashReasonString()
|
/llvm-project/libc/include/llvm-libc-types/ |
H A D | struct_sigaction.h | 12 #include "siginfo_t.h" 18 void (*sa_sigaction)(int, siginfo_t *, void *);
|
H A D | CMakeLists.txt | 79 add_header(siginfo_t HDR siginfo_t.h DEPENDS .union_sigval .pid_t .uid_t .clock_t) 82 add_header(struct_sigaction HDR struct_sigaction.h DEPENDS .sigset_t .siginfo_t)
|
/llvm-project/compiler-rt/test/tsan/ |
H A D | signal_exit.cpp | 6 static void handler(int, siginfo_t *, void *) { in handler() argument
|
H A D | signal_write.cpp | 9 static void handler(int, siginfo_t*, void*) { in handler() argument
|
H A D | signal_malloc.cpp | 6 static void handler(int, siginfo_t*, void*) { in handler() argument
|
H A D | signal_errno.cpp | 14 static void MyHandler(int, siginfo_t *s, void *c) { in MyHandler()
|
/llvm-project/compiler-rt/test/msan/ |
H A D | sigwaitinfo.cpp | 19 siginfo_t info; in test_sigwaitinfo()
|
H A D | sigaction.cpp | 19 void action(int, siginfo_t *, void *) {} in action() argument
|
/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Linux/ |
H A D | signal_trap_handler.cpp | 13 void handler(int signo, siginfo_t *info, void *uctx) { in handler()
|
H A D | signal_segv_handler.cpp | 27 void handler(int signo, siginfo_t *info, void *uctx) { in handler()
|
H A D | allow_user_segv.cpp | 33 void User_OnSIGSEGV(int signum, siginfo_t *siginfo, void *context) { in User_OnSIGSEGV()
|
/llvm-project/compiler-rt/test/msan/Linux/ |
H A D | signal_mcontext2.cpp | 11 void handler(int sig, siginfo_t *info, void *uctx) { in handler()
|
H A D | signal_mcontext.cpp | 11 void handler(int sig, siginfo_t *info, void *uctx) { in handler()
|
/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_linux.cpp | 365 static AccessInfo GetAccessInfo(siginfo_t *info, ucontext_t *uc) { in GetAccessInfo() 456 static bool HwasanOnSIGTRAP(int signo, siginfo_t *info, ucontext_t *uc) { in HwasanOnSIGTRAP() 495 if (HwasanOnSIGTRAP(signo, (siginfo_t *)info, (ucontext_t *)context)) in InitStackAndTls()
|
/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_posix.cpp | 304 auto si = static_cast<const siginfo_t *>(siginfo); in GetAddress() 309 auto si = static_cast<const siginfo_t *>(siginfo); in IsMemoryAccess() 314 return static_cast<const siginfo_t *>(siginfo)->si_signo; in GetType()
|
/llvm-project/lldb/test/API/macosx/ignore_exceptions/ |
H A D | main.c | 13 saction_handler(int signo, siginfo_t info, void *baton) { in saction_handler()
|
/llvm-project/compiler-rt/test/dfsan/ |
H A D | origin_with_sigactions.c | 41 void SignalAction(int signo, siginfo_t *si, void *uc) { in SignalAction()
|
H A D | sigaction.c | 20 void SignalAction(int signo, siginfo_t *si, void *uc) { in SignalAction()
|
/llvm-project/compiler-rt/test/scudo/ |
H A D | secondary.c | 15 void handler(int signo, siginfo_t *info, void *uctx) { in handler()
|