HomeSort by: relevance | last modified time | path
    Searched refs:sigs (Results 1 - 25 of 83) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gdb/dist/sim/testsuite/cris/c/
thread5.c 42 sigset_t sigs; local
44 if (sigemptyset (&sigs) != 0)
53 if (pthread_sigmask (SIG_BLOCK, NULL, &sigs) != 0
54 || sigaddset (&sigs, SIGUSR1) != 0
55 || pthread_sigmask (SIG_BLOCK, &sigs, NULL) != 0)
64 if (pthread_sigmask (SIG_UNBLOCK, NULL, &sigs) != 0
65 || sigaddset (&sigs, SIGUSR1) != 0
66 || pthread_sigmask (SIG_UNBLOCK, &sigs, NULL) != 0)
rtsigprocmask1.c 32 sigset_t sigs; local
34 if (sigemptyset (&sigs) != 0)
43 = pthread_sigmask (SIG_BLOCK + SIG_UNBLOCK + SIG_SETMASK, NULL, &sigs);
  /src/external/gpl3/gdb.old/dist/sim/testsuite/cris/c/
thread5.c 42 sigset_t sigs; local
44 if (sigemptyset (&sigs) != 0)
53 if (pthread_sigmask (SIG_BLOCK, NULL, &sigs) != 0
54 || sigaddset (&sigs, SIGUSR1) != 0
55 || pthread_sigmask (SIG_BLOCK, &sigs, NULL) != 0)
64 if (pthread_sigmask (SIG_UNBLOCK, NULL, &sigs) != 0
65 || sigaddset (&sigs, SIGUSR1) != 0
66 || pthread_sigmask (SIG_UNBLOCK, &sigs, NULL) != 0)
rtsigprocmask1.c 32 sigset_t sigs; local
34 if (sigemptyset (&sigs) != 0)
43 = pthread_sigmask (SIG_BLOCK + SIG_UNBLOCK + SIG_SETMASK, NULL, &sigs);
  /src/distrib/utils/more/
input.c 81 if (sigs)
117 if (sigs)
163 if (sigs)
176 if (sigs)
218 if (c == EOI || sigs)
signal.c 59 * "sigs" contains bits indicating signals which need to be processed.
61 int sigs; variable
83 sigs |= S_STOP;
98 sigs |= S_WINCH;
110 sigs |= S_WINCH;
169 * A received signal cause a bit to be set in "sigs".
176 if ((tsignals = sigs) == 0)
178 sigs = 0;
linenum.c 325 if (sigs || cpos == NULL_POSITION)
357 if (sigs || cpos == NULL_POSITION)
output.c 64 if (sigs)
prim.c 73 if (sigs)
192 if (eof && !sigs)
743 if (sigs)
  /src/external/public-domain/xz/dist/src/xz/
signals.c 57 static const int sigs[] = { local
76 for (size_t i = 0; i < ARRAY_SIZE(sigs); ++i)
77 sigaddset(&hooked_signals, sigs[i]);
99 for (size_t i = 0; i < ARRAY_SIZE(sigs); ++i) {
103 if (sigaction(sigs[i], NULL, &old) == 0
108 if (sigaction(sigs[i], &my_sa, NULL))
  /src/external/bsd/less/dist/
signal.c 27 * "sigs" contains bits indicating signals which need to be processed.
29 public int sigs; variable
59 sigs |= S_INTERRUPT;
85 sigs |= S_STOP;
108 sigs |= S_WINCH;
127 sigs |= S_INTERRUPT;
204 * A received signal cause a bit to be set in "sigs".
210 if ((tsignals = sigs) == 0)
212 sigs = 0;
  /src/external/mpl/bind/dist/bin/tests/system/smartsign/
tests.sh 225 awk '$2 == "RRSIG" && $3 == "DNSKEY" { getline; print $3 }' $cfile.signed >dnskey.sigs
227 grep -w "$ckactive" dnskey.sigs >/dev/null || sub=1
235 grep -w "$ckrevoked" dnskey.sigs >/dev/null || sub=1
243 grep -w "$czactive" dnskey.sigs >/dev/null || sub=1
252 grep -w "$ckprerevoke" dnskey.sigs >/dev/null && sub=1
260 grep -w "$ckpublished" dnskey.sigs >/dev/null && sub=1
268 grep -w "$czpublished" dnskey.sigs >/dev/null && sub=1
276 grep -w "$czinactive" dnskey.sigs >/dev/null && sub=1
284 grep -w "$czgenerated" dnskey.sigs >/dev/null && sub=1
290 awk '$2 == "RRSIG" && $3 != "DNSKEY" && $3 != "CDNSKEY" && $3 != "CDS" { getline; print $3 }' $cfile.signed | sort -un >other.sigs
    [all...]
  /src/external/ibm-public/postfix/dist/src/master/
master_sig.c 237 static int sigs[] = { local
249 for (i = 0; i < sizeof(sigs) / sizeof(sigs[0]); i++)
250 if (sigaction(sigs[i], &action, (struct sigaction *) 0) < 0)
251 msg_fatal("%s: sigaction(%d): %m", myname, sigs[i]);
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
ui.c 111 struct sigaction sigs[NSIG]; local
129 for(i = 1; i < sizeof(sigs) / sizeof(sigs[0]); i++)
131 if (sigaction(i, &sa, &sigs[i]) == 0)
175 for(i = 1; i < sizeof(sigs) / sizeof(sigs[0]); i++)
177 sigaction(i, &sigs[i], NULL);
  /src/external/gpl2/lvm2/dist/lib/locking/
locking.c 80 sigset_t sigs; local
102 sigprocmask(0, NULL, &sigs);
103 if ((_oldmasked = sigismember(&sigs, SIGINT))) {
104 sigdelset(&sigs, SIGINT);
105 sigprocmask(SIG_SETMASK, &sigs, NULL);
123 sigset_t sigs; local
124 sigprocmask(0, NULL, &sigs);
125 sigaddset(&sigs, SIGINT);
126 sigprocmask(SIG_SETMASK, &sigs, NULL);
  /src/tests/lib/libc/sys/
t_getitimer.c 225 sigset_t sigs, mask; local
228 RL(sigemptyset(&sigs));
229 RL(sigaddset(&sigs, SIGALRM));
230 RL(sigprocmask(SIG_BLOCK, &sigs, &mask));
240 sigtimedwait(&sigs, NULL, &(const struct timespec){2, 0}) == -1);
t_timer_create.c 437 sigset_t sigs, mask; local
440 RL(sigemptyset(&sigs));
441 RL(sigaddset(&sigs, SIGALRM));
442 RL(sigprocmask(SIG_BLOCK, &sigs, &mask));
471 sigtimedwait(&sigs, NULL, &(const struct timespec){2, 0}) == -1);
  /src/external/mpl/bind/dist/bin/tests/system/metadata/
tests.sh 46 }' <${cfile}.signed >sigs
58 grep "DNSKEY $ksk"'$' sigs >/dev/null || ret=1
59 grep "SOA $ksk"'$' sigs >/dev/null && ret=1
66 grep "SOA $zsk"'$' sigs >/dev/null || ret=1
73 grep " $standby"'$' sigs >/dev/null && ret=1
80 grep " $inact"'$' sigs >/dev/null && ret=1
94 grep " $rolling"'$' sigs >/dev/null && ret=1
111 grep "DNSKEY $postrev"'$' sigs >/dev/null || ret=1
112 grep "SOA $postrev"'$' sigs >/dev/null && ret=1
125 grep "DNSKEY $rolling"'$' sigs >/dev/null && ret=
    [all...]
  /src/usr.bin/rsh/
rsh.c 76 static int sigs[] = { SIGINT, SIGTERM, SIGQUIT }; variable
267 for (i = 0; i < sizeof(sigs) / sizeof(sigs[0]); i++)
268 (void)sigaddset(&nset, sigs[i]);
275 for (i = 0; i < sizeof(sigs) / sizeof(sigs[0]); i++) {
280 (void)sigaction(sigs[i], &sa, NULL);
  /src/external/bsd/unbound/dist/testcode/
signit.c 201 ldns_rr_list* sigs; local
206 sigs = ldns_sign_public(rrset, keys);
207 if(!sigs) fatal_exit("failed to sign");
209 ldns_rr_list_print(stdout, sigs);
212 ldns_rr_list_free(sigs);
  /src/bin/sh/
main.c 271 static int sigs[] = { local
278 #define SIGSSIZE (sizeof(sigs)/sizeof(sigs[0]))
282 setsignal(sigs[i], 0);
  /src/crypto/external/bsd/openssl/dist/test/recipes/
70-test_renegotiation.t 143 my $sigs = pack "C10", 0x00, 0x08,
146 $message->set_extension(TLSProxy::Message::EXT_SIG_ALGS_CERT, $sigs);
  /src/crypto/external/bsd/openssl.old/dist/test/recipes/
70-test_renegotiation.t 124 my $sigs = pack "C10", 0x00, 0x08,
127 $message->set_extension(TLSProxy::Message::EXT_SIG_ALGS_CERT, $sigs);
  /src/external/bsd/nvi/dist/ex/
ex_shell.c 221 } SIGS;
223 SIGS const sigs[] = { variable
366 const SIGS *sigp;
370 sigp = &sigs[0]; n < sizeof(sigs) / sizeof(sigs[0]); ++n, ++sigp)
  /src/external/bsd/unbound/dist/util/
ub_event.c 269 ub_default_event_base(int sigs, time_t* time_secs, struct timeval* time_tv)
275 (void)sigs;
283 if(sigs)
288 (void)sigs;

Completed in 40 milliseconds

1 2 3 4