Searched refs:oset (Results 1 - 25 of 50) sorted by relevance

12

/freebsd-10-stable/lib/libc/gen/
H A Dpause.c47 sigset_t oset; local
49 if (sigprocmask(SIG_BLOCK, NULL, &oset) == -1)
51 return (sigsuspend(&oset));
/freebsd-10-stable/lib/libc/sys/
H A Dsigprocmask.c45 sigprocmask(int how, const sigset_t *set, sigset_t *oset) argument
49 __libc_interposing[INTERPOS_sigprocmask])(how, set, oset));
/freebsd-10-stable/lib/libkse/thread/
H A Dthr_sigprocmask.c45 _sigprocmask(int how, const sigset_t *set, sigset_t *oset) argument
49 ret = _pthread_sigmask(how, set, oset);
H A Dthr_sigmask.c46 _pthread_sigmask(int how, const sigset_t *set, sigset_t *oset) argument
53 ret = __sys_sigprocmask(how, set, oset);
67 if (oset != NULL)
110 if (ret == 0 && oset != NULL)
111 *oset = oldset;
/freebsd-10-stable/lib/libedit/
H A Dsig.c70 sigset_t nset, oset; local
74 (void) sigprocmask(SIG_BLOCK, &nset, &oset);
103 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
115 sigset_t *nset, oset; local
126 (void) sigprocmask(SIG_BLOCK, nset, &oset);
134 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
159 sigset_t oset; local
166 (void) sigprocmask(SIG_BLOCK, &el->el_signal->sig_set, &oset);
175 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
186 sigset_t oset; local
[all...]
H A Del.c558 sigset_t oset, nset; local
562 (void) sigprocmask(SIG_BLOCK, &nset, &oset);
568 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
/freebsd-10-stable/crypto/openssl/crypto/
H A Ds390xcap.c19 sigset_t oset; local
32 sigprocmask(SIG_SETMASK, &ill_act.sa_mask, &oset);
40 sigprocmask(SIG_SETMASK, &oset, NULL);
H A Dppccap.c37 sigset_t oset;
40 sigprocmask(SIG_SETMASK, &all_masked, &oset);
42 sigprocmask(SIG_SETMASK, &oset, NULL);
71 sigset_t oset; local
108 sigprocmask(SIG_SETMASK, &ill_act.sa_mask, &oset);
128 sigprocmask(SIG_SETMASK, &oset, NULL);
H A Darmcap.c42 sigset_t oset; local
67 sigprocmask(SIG_SETMASK, &ill_act.sa_mask, &oset);
80 sigprocmask(SIG_SETMASK, &oset, NULL);
H A Dsparcv9cap.c183 sigset_t all_masked, oset; local
207 sigprocmask(SIG_SETMASK, &all_masked, &oset);
242 sigprocmask(SIG_SETMASK, &oset, NULL);
/freebsd-10-stable/contrib/tcpdump/
H A Dprint-ascii.c78 register const u_char *cp, register u_int length, register u_int oset)
101 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE,
104 oset += HEXDUMP_BYTES_PER_LINE;
118 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE,
135 register u_int oset)
144 (void)printf("%s0x%04x: ", ident, oset);
145 oset += HEXDUMP_BYTES_PER_LINE;
152 (void)printf("%s0x%04x: ", ident, oset);
77 hex_and_ascii_print_with_offset(register const char *ident, register const u_char *cp, register u_int length, register u_int oset) argument
134 hex_print_with_offset(register const char *ident, register const u_char *cp, register u_int length, register u_int oset) argument
/freebsd-10-stable/contrib/tcsh/
H A Ddotlock.c131 sigset_t nset, oset; local
149 (void)sigprocmask(SIG_BLOCK, &nset, &oset);
151 (void)sigprocmask(SIG_SETMASK, &oset, NULL);
156 (void)sigprocmask(SIG_SETMASK, &oset, NULL);
H A Dtw.help.c135 sigset_t oset, set; local
146 (void)sigprocmask(SIG_UNBLOCK, &set, &oset);
147 cleanup_push(&oset, sigprocmask_cleanup);
/freebsd-10-stable/lib/libc/stdio/
H A Dtmpfile.c54 sigset_t set, oset; local
73 (void)__libc_sigprocmask(SIG_BLOCK, &set, &oset);
81 (void)__libc_sigprocmask(SIG_SETMASK, &oset, NULL);
/freebsd-10-stable/contrib/sendmail/libsm/
H A Dsignal.c123 sigset_t sset, oset;
127 if (sigprocmask(SIG_BLOCK, &sset, &oset) < 0)
130 return sigismember(&oset, sig);
162 sigset_t sset, oset;
166 if (sigprocmask(SIG_UNBLOCK, &sset, &oset) < 0)
169 return sigismember(&oset, sig);
/freebsd-10-stable/lib/libc/compat-43/
H A Dsigcompat.c75 sigset_t set, oset; local
80 n = __libc_sigprocmask(SIG_SETMASK, &set, &oset);
83 return (oset.__bits[0]);
90 sigset_t set, oset; local
95 n = __libc_sigprocmask(SIG_BLOCK, &set, &oset);
98 return (oset.__bits[0]);
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_select.c89 sigset_t set, oset, nset; local
90 char obuf[sizeof(oset) + 3], nbuf[sizeof(nset) + 3];
105 if (sigprocmask(SIG_BLOCK, NULL, &oset) == -1)
125 if (memcmp(&oset, &nset, sizeof(oset)) != 0)
129 prmask(&oset, obuf, sizeof(obuf)));
/freebsd-10-stable/usr.bin/mail/
H A Dpopen.c135 sigset_t nset, oset; local
143 (void)sigprocmask(SIG_BLOCK, &nset, &oset);
145 (void)sigprocmask(SIG_SETMASK, &oset, NULL);
338 sigset_t nset, oset; local
343 (void)sigprocmask(SIG_BLOCK, &nset, &oset);
348 (void)sigsuspend(&oset);
351 (void)sigprocmask(SIG_SETMASK, &oset, NULL);
361 sigset_t nset, oset; local
366 (void)sigprocmask(SIG_BLOCK, &nset, &oset);
372 (void)sigprocmask(SIG_SETMASK, &oset, NUL
[all...]
H A Dfio.c273 static sigset_t nset, oset; variable
286 (void)sigprocmask(SIG_BLOCK, &nset, &oset);
298 (void)sigprocmask(SIG_SETMASK, &oset, NULL);
/freebsd-10-stable/contrib/libreadline/
H A Dsignals.c294 static sigset_t bset, oset; local
326 sigemptyset (&oset);
327 sigprocmask (SIG_BLOCK, &bset, &oset);
365 sigprocmask (SIG_SETMASK, &oset, (sigset_t *)NULL);
/freebsd-10-stable/lib/libthr/thread/
H A Dthr_create.c60 sigset_t set, oset; local
179 __sys_sigprocmask(SIG_SETMASK, &set, &oset);
180 new_thread->sigmask = oset;
196 __sys_sigprocmask(SIG_SETMASK, &oset, NULL);
/freebsd-10-stable/contrib/xz/src/common/
H A Dmythread.h88 sigset_t *restrict oset)
90 int ret = sigprocmask(how, set, oset);
139 sigset_t *restrict oset)
144 (void)oset;
146 int ret = pthread_sigmask(how, set, oset);
87 mythread_sigmask(int how, const sigset_t *restrict set, sigset_t *restrict oset) argument
138 mythread_sigmask(int how, const sigset_t *restrict set, sigset_t *restrict oset) argument
/freebsd-10-stable/cddl/compat/opensolaris/misc/
H A Dthread_pool.c213 sigset_t maskset, oset; local
218 (void) pthread_sigmask(SIG_SETMASK, &maskset, &oset);
220 (void) pthread_sigmask(SIG_SETMASK, &oset, NULL);
/freebsd-10-stable/lib/librt/
H A Dsigev_thread.c309 sigset_t set, oset; local
336 _sigprocmask(SIG_SETMASK, &set, &oset);
339 _sigprocmask(SIG_SETMASK, &oset, NULL);
/freebsd-10-stable/lib/libc/db/btree/
H A Dbt_open.c390 sigset_t set, oset; local
405 (void)__libc_sigprocmask(SIG_BLOCK, &set, &oset);
408 (void)__libc_sigprocmask(SIG_SETMASK, &oset, NULL);

Completed in 121 milliseconds

12