HomeSort by relevance Sort by last modified time
    Searched refs:sigprocmask64 (Results 1 - 15 of 15) sorted by null

  /bionic/libc/private/
ScopedSignalBlocker.h 29 sigprocmask64(SIG_SETMASK, &set, &old_set_);
37 sigprocmask64(SIG_SETMASK, &old_set_, nullptr);
  /bionic/libc/bionic/
sigprocmask.cpp 54 if (sigprocmask64(how, new_set_ptr, &old_set.sigset64) == -1) {
65 int sigprocmask64(int how, function
abort.cpp 67 sigprocmask64(SIG_SETMASK, &mask, nullptr);
75 sigprocmask64(SIG_SETMASK, &mask, nullptr);
signal.cpp 55 return (sigprocmask64(how, new_set, old_set) == -1) ? errno : 0;
146 return sigprocmask64(SIG_BLOCK, &set, nullptr);
195 if (sigprocmask64(SIG_SETMASK, nullptr, &set) == -1 || sigdelset64(&set, sig) == -1) return -1;
225 return sigprocmask64(SIG_UNBLOCK, &set, nullptr);
240 if (sigprocmask64(disp == SIG_HOLD ? SIG_BLOCK : SIG_UNBLOCK, &new_mask, &old_mask) == -1) {
spawn.cpp 130 if (sigprocmask64(SIG_SETMASK, &(*attr)->sigmask.sigset64, nullptr)) _exit(127);
  /bionic/tests/
ScopedSignalHandler.h 36 #define sigprocmask64 sigprocmask macro
80 sigprocmask64(SIG_SETMASK, nullptr, &old_mask_);
84 sigprocmask64(SIG_SETMASK, &old_mask_, nullptr);
setjmp_test.cpp 87 sigprocmask64(SIG_SETMASK, NULL, &actual);
99 sigprocmask64(SIG_SETMASK, &ss.one, nullptr);
102 sigprocmask64(SIG_SETMASK, &ss.two, NULL);
117 sigprocmask64(SIG_SETMASK, &ss.one, nullptr);
120 sigprocmask64(SIG_SETMASK, &ss.two, NULL);
139 sigprocmask64(SIG_SETMASK, &ss.one, nullptr);
142 sigprocmask64(SIG_SETMASK, &ss.two, NULL);
155 sigprocmask64(SIG_SETMASK, &ss.one, nullptr);
158 sigprocmask64(SIG_SETMASK, &ss.two, NULL);
sys_signalfd_test.cpp 70 ASSERT_EQ(0, sigprocmask64(SIG_SETMASK, &mask, nullptr));
signal_test.cpp 239 ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &just_SIGRTMIN, nullptr));
430 ASSERT_EQ(0, sigprocmask64(SIG_SETMASK, &sigset_libc, nullptr));
470 ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &sigset_libc, nullptr));
630 ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &just_SIGRTMIN, nullptr));
674 ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &just_SIGRTMIN, nullptr));
pthread_test.cpp 423 // ...and that sigprocmask64 agrees with pthread_sigmask64.
425 ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, NULL, &final_set));
    [all...]
  /art/sigchainlib/
sigchain_test.cc 108 ASSERT_EQ(0, sigprocmask64(SIG_SETMASK, &mask, nullptr));
116 ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &mask, nullptr));
sigchain.cc 119 static decltype(&sigprocmask64) linked_sigprocmask64;
142 lookup_next_symbol(&linked_sigprocmask64, sigprocmask64, "sigprocmask64");
473 extern "C" int sigprocmask64(int how, const sigset64_t* new_set, function in namespace:art
  /bionic/libc/arch-x86/bionic/
setjmp.S 120 call PIC_PLT(sigprocmask64)
168 call PIC_PLT(sigprocmask64)
  /bionic/libc/arch-arm/bionic/
setjmp.S 154 bl sigprocmask64
224 bl sigprocmask64
  /bionic/libc/include/
signal.h 86 int sigprocmask64(int __how, const sigset64_t* __new_set, sigset64_t* __old_set) __INTRODUCED_IN(28);

Completed in 112 milliseconds