HomeSort by relevance Sort by last modified time
    Searched full:sigset (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
sigset.c 8 sighandler_t sigset(int signum, sighandler_t handler) { function
  /bionic/libc/bionic/
sigwait.cpp 39 kernel_sigset_t sigset(set);
43 int result = __rt_sigtimedwait(sigset.get(), NULL, NULL, sizeof(sigset));
posix_timers.cpp 74 kernel_sigset_t sigset; local
75 sigaddset(sigset.get(), TIMER_SIGNAL);
81 int rc = __rt_sigtimedwait(sigset.get(), &si, NULL, sizeof(sigset));
143 kernel_sigset_t sigset; local
144 sigaddset(sigset.get(), TIMER_SIGNAL);
146 pthread_sigmask(SIG_BLOCK, sigset.get(), old_sigset.get());
getentropy_linux.c 362 sigset_t sigset; local
406 HX(sigpending(&sigset) == -1, sigset); local
407 HX(sigprocmask(SIG_BLOCK, NULL, &sigset) == -1,
408 sigset); local
  /external/valgrind/main/memcheck/tests/
sigprocmask.c 7 // Reg test for bug #93328: we were using too-big sigset types, and thus
17 // arm-linux uses rt_sigprocmask, so no sigset mangling takes place
  /bionic/tests/
sys_epoll_test.cpp 33 // epoll_pwait without a sigset (which is equivalent to epoll_wait).
36 // epoll_pwait with a sigset.
  /external/tcpdump/
setsignal.c 56 * Otherwise, if "sigset()" is available, it probably has BSD semantics
57 * while "signal()" has traditional semantics, so we use "sigset()"; it
89 return (sigset(sig, func));
config.h 143 /* Define to 1 if you have the `sigset' function. */
config.h.in 142 /* Define to 1 if you have the `sigset' function. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/
poll.h 29 # include <bits/sigset.h>
select.h 34 #include <bits/sigset.h>
epoll.h 26 #include <bits/sigset.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
poll.h 29 # include <bits/sigset.h>
select.h 34 #include <bits/sigset.h>
epoll.h 26 #include <bits/sigset.h>
  /art/runtime/
fault_handler.cc 333 sigset_t sigset; local
334 sigemptyset(&sigset);
335 sigaddset(&sigset, SIGSEGV);
336 sigaddset(&sigset, SIGABRT);
337 pthread_sigmask(SIG_UNBLOCK, &sigset, nullptr);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
setjmp.h 31 #include <bits/sigset.h> /* Get `__sigset_t'. */
signal.h 33 #include <bits/sigset.h> /* __sigset_t, __sig_atomic_t. */
388 extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
setjmp.h 31 #include <bits/sigset.h> /* Get `__sigset_t'. */
signal.h 33 #include <bits/sigset.h> /* __sigset_t, __sig_atomic_t. */
388 extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW;
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/plat-linux2/
TYPES.py 141 # Included from bits/sigset.h
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap.h 106 sighandler_t sigset(int sig, sighandler_t disp);
library.dsc 144 "syscalls/sigset.c",
  /external/strace/
signal.c 134 * umoven(tcp, addr, sizeof(sigset_t), &sigset)
1104 /* Note: arg[3] is the length of the sigset. Kernel requires NSIG / 8 */
1204 * Sigset size is in tcp->u_arg[4] (SPARC)
1207 * with wrong sigset size (just returns EINVAL instead).
1247 * One of the few syscalls where sigset size (arg[1])
    [all...]
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
kernel_wrap_test.cc 509 TEST_F(KernelWrapTest, sigset) {
512 EXPECT_EQ(NULL, sigset(kDummyInt, new_handler));
516 // KernelIntercept forwards calls to signal to KernelProxy::sigset.

Completed in 3225 milliseconds

1 2 3 4