HomeSort by relevance Sort by last modified time
    Searched refs:sigprocmask (Results 251 - 275 of 359) sorted by null

<<1112131415

  /external/strace/
sys_func.h 271 extern SYS_FUNC(sigprocmask);
signal.c 417 * The OSF/1 sigprocmask is different: it doesn't pass in two pointers,
425 * ret = sigprocmask(how, &new, &old, ...);
441 /* "Old" sigprocmask, which operates with word-sized signal masks */
442 SYS_FUNC(sigprocmask)
  /external/valgrind/coregrind/m_syswrap/
syswrap-amd64-darwin.c 352 VG_(sigprocmask)(VKI_SIG_SETMASK, &blockall, NULL);
459 VG_(sigprocmask)(VKI_SIG_SETMASK, &blockall, NULL);
  /system/core/init/
init.cpp 517 if (sigprocmask(SIG_UNBLOCK, &mask, nullptr) == -1) {
527 if (sigprocmask(SIG_BLOCK, &mask, nullptr) == -1) {
  /device/generic/goldfish/dhcp/client/
dhcpclient.cpp 97 status = ::sigprocmask(SIG_SETMASK, &blockMask, &originalMask);
  /external/libbrillo/brillo/
process.cc 296 CHECK_EQ(0, sigprocmask(SIG_SETMASK, &signal_mask, nullptr));
  /external/libunwind/include/
libunwind_i.h 184 # define SIGPROCMASK(how, new_mask, old_mask) \
185 sigprocmask((how), (new_mask), (old_mask))
187 # define SIGPROCMASK(how, new_mask, old_mask) mark_as_used(old_mask)
193 SIGPROCMASK (SIG_SETMASK, &unwi_full_mask, &(m)); \
199 SIGPROCMASK (SIG_SETMASK, &(m), NULL); \
  /external/linux-kselftest/tools/testing/selftests/ptp/
testptp.c 81 sigprocmask(SIG_UNBLOCK, &mask, NULL);
  /external/ltp/testcases/kernel/sched/tool/
time-schedule.c 276 sigprocmask(SIG_BLOCK, &set, NULL);
  /external/python/cpython3/Python/
thread_pthread.h 92 * isn't present. DEC threads uses sigprocmask() instead as do most
99 # define SET_THREAD_SIGMASK sigprocmask
  /frameworks/base/core/jni/
com_android_internal_os_Zygote.cpp 576 if (sigprocmask(SIG_BLOCK, &sigchld, nullptr) == -1) {
577 fail_fn(CREATE_ERROR("sigprocmask(SIG_SETMASK, { SIGCHLD }) failed: %s", strerror(errno)));
618 if (sigprocmask(SIG_UNBLOCK, &sigchld, nullptr) == -1) {
619 fail_fn(CREATE_ERROR("sigprocmask(SIG_SETMASK, { SIGCHLD }) failed: %s", strerror(errno)));
775 if (sigprocmask(SIG_UNBLOCK, &sigchld, nullptr) == -1) {
776 fail_fn(CREATE_ERROR("sigprocmask(SIG_SETMASK, { SIGCHLD }) failed: %s", strerror(errno)));
    [all...]
  /external/ppp/pppd/
main.c 654 sigprocmask(SIG_BLOCK, &signals_handled, NULL);
656 sigprocmask(SIG_UNBLOCK, &signals_handled, NULL);
659 sigprocmask(SIG_UNBLOCK, &signals_handled, NULL);
    [all...]
  /external/strace/tests/
ptrace.c 86 if (sigprocmask(SIG_BLOCK, &mask, NULL))
87 perror_msg_and_fail("sigprocmask");
  /external/strace/tests-m32/
ptrace.c 86 if (sigprocmask(SIG_BLOCK, &mask, NULL))
87 perror_msg_and_fail("sigprocmask");
  /external/strace/tests-mx32/
ptrace.c 86 if (sigprocmask(SIG_BLOCK, &mask, NULL))
87 perror_msg_and_fail("sigprocmask");
  /external/wayland/src/
event-loop.c 271 sigprocmask(SIG_BLOCK, &mask, NULL);
  /prebuilts/go/darwin-x86/src/runtime/
sys_dragonfly_amd64.s 335 TEXT runtime·sigprocmask(SB),NOSPLIT,$0
sys_freebsd_386.s 373 TEXT runtime·sigprocmask(SB),NOSPLIT,$16
sys_freebsd_amd64.s 322 TEXT runtime·sigprocmask(SB),NOSPLIT,$0
sys_netbsd_386.s 194 TEXT runtime·sigprocmask(SB),NOSPLIT,$-4
sys_netbsd_amd64.s 215 TEXT runtime·sigprocmask(SB),NOSPLIT,$0
sys_netbsd_arm.s 196 TEXT runtime·sigprocmask(SB),NOSPLIT,$0
  /prebuilts/go/linux-x86/src/runtime/
sys_dragonfly_amd64.s 335 TEXT runtime·sigprocmask(SB),NOSPLIT,$0
sys_freebsd_386.s 373 TEXT runtime·sigprocmask(SB),NOSPLIT,$16
sys_freebsd_amd64.s 322 TEXT runtime·sigprocmask(SB),NOSPLIT,$0

Completed in 1170 milliseconds

<<1112131415