HomeSort by relevance Sort by last modified time
    Searched refs:sigset_t (Results 1 - 25 of 622) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
4-1-buildonly.c 2 Test the definition of sigset_t.
7 sigset_t dummy;
27-1-buildonly.c 3 int pthread_sigmask(int, const sigset_t *, sigset_t *);
9 typedef int (*pthread_sigmask_test) (int, const sigset_t *, sigset_t *);
42-1-buildonly.c 3 int sigprocmask(int, const sigset_t *restrict, sigset_t *restrict);
10 typedef int (*sigprocmask_test) (int, const sigset_t *, sigset_t *);
30-1-buildonly.c 3 int sigaddset(sigset_t *, int);
9 typedef int (*sigaddset_test) (sigset_t *, int);
32-1-buildonly.c 3 int sigdelset(sigset_t *, int);
9 typedef int (*sigdelset_test) (sigset_t *, int);
33-1-buildonly.c 3 int sigemptyset(sigset_t *);
9 typedef int (*sigemptyset_test) (sigset_t *);
34-1-buildonly.c 3 int sigfillset(sigset_t *);
9 typedef int (*sigfillset_test) (sigset_t *);
38-1-buildonly.c 3 int sigismember(const sigset_t *, int);
9 typedef int (*sigismember_test) (const sigset_t *, int);
41-1-buildonly.c 4 int sigpending(sigset_t *);
10 typedef int (*sigpending_test) (sigset_t *);
46-1-buildonly.c 3 int sigsuspend(const sigset_t *);
9 typedef int (*sigsuspend_test) (const sigset_t *);
47-1-buildonly.c 4 int sigtimedwait(const sigset_t *restrict, siginfo_t *restrict,
11 typedef int (*sigtimedwait_test) (const sigset_t * restrict,
48-1-buildonly.c 3 int sigwait(const sigset_t *restrict, int *restrict);
9 typedef int (*sigwait_test) (const sigset_t * restrict, int *restrict);
49-1-buildonly.c 3 int sigwaitinfo(const sigset_t *restrict, siginfo_t *restrict);
9 typedef int (*sigwaitinfo_test) (const sigset_t * restrict,
  /bionic/libc/private/
SigSetConverter.h 33 sigset_t sigset;
  /external/dhcpcd-6.8.2/compat/
posix_spawn.h 37 sigset_t posix_attr_sigmask;
38 sigset_t posix_attr_sigdefault;
50 int posix_spawnattr_setsigmask(posix_spawnattr_t *, const sigset_t *);
51 int posix_spawnattr_setsigdefault(posix_spawnattr_t *, const sigset_t *);
  /bionic/libc/kernel/uapi/asm-arm64/asm/
ucontext.h 26 sigset_t uc_sigmask;
27 __u8 __linux_unused[1024 / 8 - sizeof(sigset_t)];
  /external/kernel-headers/original/uapi/asm-arm64/asm/
ucontext.h 26 sigset_t uc_sigmask;
27 /* glibc uses a 1024-bit sigset_t */
28 __u8 __unused[1024 / 8 - sizeof(sigset_t)];
  /external/libunwind/tests/
test-setjmp.c 40 static sigset_t sigset4;
135 sigprocmask (SIG_BLOCK, NULL, (sigset_t *) &sigset4);
146 volatile sigset_t sigset1, sigset2, sigset3;
152 sigemptyset ((sigset_t *) &sigset1);
153 sigaddset ((sigset_t *) &sigset1, SIGUSR1);
154 sigemptyset ((sigset_t *) &sigset2);
155 sigaddset ((sigset_t *) &sigset2, SIGUSR2);
165 sigprocmask (SIG_SETMASK, (sigset_t *) &sigset1, NULL);
168 sigemptyset ((sigset_t *) &sigset3);
169 sigprocmask (SIG_BLOCK, NULL, (sigset_t *) &sigset3)
    [all...]
  /bionic/libc/kernel/uapi/asm-generic/
ucontext.h 26 sigset_t uc_sigmask;
  /external/kernel-headers/original/uapi/asm-generic/
ucontext.h 10 sigset_t uc_sigmask; /* mask last for extensibility */
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigemptyset/
2-1.c 18 sigset_t signalset;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigfillset/
2-1.c 17 sigset_t signalset;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
ucontext.h 9 sigset_t uc_sigmask; /* mask last for extensibility */
  /toolchain/binutils/binutils-2.27/libiberty/
sigsetmask.c 29 sigset_t new_sig;
30 sigset_t old_sig;
  /bionic/libc/include/android/
legacy_signal_inlines.h 63 static __inline int sigismember(const sigset_t *set, int signum) {
67 if (set == NULL || bit < 0 || bit >= (int)(8 * sizeof(sigset_t))) {
74 static __inline int sigaddset(sigset_t *set, int signum) {
78 if (set == NULL || bit < 0 || bit >= (int)(8 * sizeof(sigset_t))) {
86 static __inline int sigdelset(sigset_t *set, int signum) {
90 if (set == NULL || bit < 0 || bit >= (int)(8 * sizeof(sigset_t))) {
98 static __inline int sigemptyset(sigset_t *set) {
103 memset(set, 0, sizeof(sigset_t));
107 static __inline int sigfillset(sigset_t *set) {
112 memset(set, ~0, sizeof(sigset_t));
    [all...]

Completed in 351 milliseconds

1 2 3 4 5 6 7 8 91011>>