Searched refs:SIG_BLOCK (Results 1 – 12 of 12) sorted by relevance
/bionic/tests/ |
D | signal_test.cpp | 174 ASSERT_EQ(0, sigprocmask(SIG_BLOCK, &just_SIGALRM, nullptr)); in TEST() 216 ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &just_SIGRTMIN, nullptr)); in TEST() 445 ASSERT_EQ(0, sigprocmask(SIG_BLOCK, &sigset_libc, nullptr)); in TEST() 454 ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &sigset_libc, nullptr)); in TEST() 463 ASSERT_EQ(0, pthread_sigmask(SIG_BLOCK, &sigset_libc, nullptr)); in TEST() 472 ASSERT_EQ(0, pthread_sigmask64(SIG_BLOCK, &sigset_libc, nullptr)); in TEST() 654 ASSERT_EQ(0, sigprocmask(SIG_BLOCK, &just_SIGALRM, nullptr)); in TEST() 673 ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &just_SIGRTMIN, nullptr)); in TEST() 692 ASSERT_EQ(0, sigprocmask(SIG_BLOCK, &just_SIGALRM, nullptr)); in TEST() 714 ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &just_SIGRTMIN, nullptr)); in TEST() [all …]
|
D | pthread_test.cpp | 399 ASSERT_EQ(0, pthread_sigmask(SIG_BLOCK, nullptr, &original_set)); in TEST() 406 ASSERT_EQ(0, pthread_sigmask(SIG_BLOCK, &set, nullptr)); in TEST() 411 ASSERT_EQ(0, pthread_sigmask(SIG_BLOCK, nullptr, &final_set)); in TEST() 415 ASSERT_EQ(0, sigprocmask(SIG_BLOCK, nullptr, &final_set)); in TEST() 440 ASSERT_EQ(0, pthread_sigmask64(SIG_BLOCK, nullptr, &original_set)); in TEST() 447 ASSERT_EQ(0, pthread_sigmask64(SIG_BLOCK, &set, nullptr)); in TEST() 452 ASSERT_EQ(0, pthread_sigmask64(SIG_BLOCK, nullptr, &final_set)); in TEST() 456 ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, nullptr, &final_set)); in TEST()
|
D | spawn_test.cpp | 410 ASSERT_EQ(0, sigprocmask(SIG_BLOCK, &just_SIGBUS, nullptr)); in TEST()
|
/bionic/libc/kernel/uapi/asm-generic/ |
D | signal-defs.h | 35 #ifndef SIG_BLOCK 36 #define SIG_BLOCK 0 macro
|
/bionic/libc/private/ |
D | ScopedSignalBlocker.h | 35 __rt_sigprocmask(SIG_BLOCK, &set, &old_set_, sizeof(sigset64_t)); in ScopedSignalBlocker() 42 __rt_sigprocmask(SIG_BLOCK, &set, &old_set_, sizeof(sigset64_t)); in ScopedSignalBlocker()
|
/bionic/libc/bionic/ |
D | signal.cpp | 87 if (sigprocmask64(SIG_BLOCK, &in.set, &out.set) == -1) return -1; in sigblock() 157 return sigprocmask64(SIG_BLOCK, &set, nullptr); in sighold() 250 if (sigprocmask64(disp == SIG_HOLD ? SIG_BLOCK : SIG_UNBLOCK, &new_mask, &old_mask) == -1) { in sigset()
|
D | sigprocmask.cpp | 60 if (new_set && how != SIG_BLOCK && how != SIG_UNBLOCK && how != SIG_SETMASK) { in sigprocmask64()
|
D | pthread_exit.cpp | 117 __rt_sigprocmask(SIG_BLOCK, &set, nullptr, sizeof(sigset64_t)); in pthread_exit()
|
D | posix_timers.cpp | 173 __rt_sigprocmask(SIG_BLOCK, &sigset, &old_sigset, sizeof(sigset)); in timer_create()
|
/bionic/libc/platform/bionic/ |
D | reserved_signals.h | 61 case SIG_BLOCK: in filter_reserved_signals()
|
/bionic/tests/headers/posix/ |
D | signal_h.c | 109 i = SIG_BLOCK; in signal_h()
|
/bionic/libc/malloc_debug/ |
D | malloc_debug.cpp | 251 __rt_sigprocmask(SIG_BLOCK, &backtrace_set_, &old_set, sizeof(backtrace_set_)); in ScopedBacktraceSignalBlocker()
|