| /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/cris/c/ |
| H A D | thread5.c | 42 sigset_t sigs; in main() local 44 if (sigemptyset (&sigs) != 0) in main() 53 if (pthread_sigmask (SIG_BLOCK, NULL, &sigs) != 0 in main() 54 || sigaddset (&sigs, SIGUSR1) != 0 in main() 55 || pthread_sigmask (SIG_BLOCK, &sigs, NULL) != 0) in main() 64 if (pthread_sigmask (SIG_UNBLOCK, NULL, &sigs) != 0 in main() 65 || sigaddset (&sigs, SIGUSR1) != 0 in main() 66 || pthread_sigmask (SIG_UNBLOCK, &sigs, NULL) != 0) in main()
|
| H A D | rtsigprocmask1.c | 32 sigset_t sigs; in main() local 34 if (sigemptyset (&sigs) != 0) in main() 43 = pthread_sigmask (SIG_BLOCK + SIG_UNBLOCK + SIG_SETMASK, NULL, &sigs); in main()
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/smartsign/ |
| H A D | 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 …SKEY" && $3 != "CDNSKEY" && $3 != "CDS" { getline; print $3 }' $cfile.signed | sort -un >other.sigs [all …]
|
| H A D | clean.sh | |
| /netbsd-src/distrib/utils/more/ |
| H A D | signal.c | 61 int sigs; variable 83 sigs |= S_STOP; 98 sigs |= S_WINCH; 110 sigs |= S_WINCH; in winch() 176 if ((tsignals = sigs) == 0) in psignals() 178 sigs = 0; in psignals()
|
| H A D | input.c | 81 if (sigs) 117 if (sigs) 163 if (sigs) 176 if (sigs) 218 if (c == EOI || sigs)
|
| /netbsd-src/external/bsd/less/dist/ |
| H A D | signal.c | 29 public int sigs; variable 59 sigs |= S_INTERRUPT; in u_interrupt() 85 sigs |= S_STOP; in stop() 108 sigs |= S_WINCH; in winch() 127 sigs |= S_INTERRUPT; in wbreak_handler() 210 if ((tsignals = sigs) == 0) in psignals() 212 sigs = 0; in psignals()
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| H A D | ui.c | 111 struct sigaction sigs[NSIG]; in read_string() local 129 for(i = 1; i < sizeof(sigs) / sizeof(sigs[0]); i++) in read_string() 131 if (sigaction(i, &sa, &sigs[i]) == 0) in read_string() 175 for(i = 1; i < sizeof(sigs) / sizeof(sigs[0]); i++) in read_string() 177 sigaction(i, &sigs[i], NULL); in read_string()
|
| /netbsd-src/external/public-domain/xz/dist/src/xz/ |
| H A D | signals.c | 57 static const int sigs[] = { in signals_init() local 76 for (size_t i = 0; i < ARRAY_SIZE(sigs); ++i) in signals_init() 77 sigaddset(&hooked_signals, sigs[i]); in signals_init() 99 for (size_t i = 0; i < ARRAY_SIZE(sigs); ++i) { in signals_init() 103 if (sigaction(sigs[i], NULL, &old) == 0 in signals_init() 108 if (sigaction(sigs[i], &my_sa, NULL)) in signals_init()
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/metadata/ |
| H A D | 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=1
|
| /netbsd-src/external/gpl2/lvm2/dist/lib/locking/ |
| H A D | locking.c | 80 sigset_t sigs; in sigint_allow() local 102 sigprocmask(0, NULL, &sigs); in sigint_allow() 103 if ((_oldmasked = sigismember(&sigs, SIGINT))) { in sigint_allow() 104 sigdelset(&sigs, SIGINT); in sigint_allow() 105 sigprocmask(SIG_SETMASK, &sigs, NULL); in sigint_allow() 123 sigset_t sigs; in sigint_restore() local 124 sigprocmask(0, NULL, &sigs); in sigint_restore() 125 sigaddset(&sigs, SIGINT); in sigint_restore() 126 sigprocmask(SIG_SETMASK, &sigs, NULL); in sigint_restore()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/master/ |
| H A D | master_sig.c | 237 static int sigs[] = { in master_sigsetup() local 249 for (i = 0; i < sizeof(sigs) / sizeof(sigs[0]); i++) in master_sigsetup() 250 if (sigaction(sigs[i], &action, (struct sigaction *) 0) < 0) in master_sigsetup() 251 msg_fatal("%s: sigaction(%d): %m", myname, sigs[i]); in master_sigsetup()
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/chain/ans4/ |
| H A D | ans.py | 167 sigs = [] 192 sigs.append(dns.rrset.from_text(owner, ttl, IN, RRSIG, rrsig)) 212 sigs.append(dns.rrset.from_text(owner, ttl, IN, RRSIG, rrsig)) 230 sigs.append(dns.rrset.from_text(owner, ttl, IN, RRSIG, rrsig)) 243 sigs.append(dns.rrset.from_text(owner, ttl, IN, RRSIG, rrsig)) 258 sigs.append(dns.rrset.from_text(owner, ttl, IN, RRSIG, rrsig)) 266 r.answer.append(sigs[-1]) 272 r.answer.append(sigs[i])
|
| /netbsd-src/usr.bin/rsh/ |
| H A D | rsh.c | 76 static int sigs[] = { SIGINT, SIGTERM, SIGQUIT }; variable 267 for (i = 0; i < sizeof(sigs) / sizeof(sigs[0]); i++) in main() 268 (void)sigaddset(&nset, sigs[i]); in main() 275 for (i = 0; i < sizeof(sigs) / sizeof(sigs[0]); i++) { in main() 280 (void)sigaction(sigs[i], &sa, NULL); in main()
|
| /netbsd-src/external/bsd/unbound/dist/testcode/ |
| H A D | signit.c | 201 ldns_rr_list* sigs; in signit() local 206 sigs = ldns_sign_public(rrset, keys); in signit() 207 if(!sigs) fatal_exit("failed to sign"); in signit() 209 ldns_rr_list_print(stdout, sigs); in signit() 212 ldns_rr_list_free(sigs); in signit()
|
| /netbsd-src/external/gpl2/rcs/dist/src/ |
| H A D | rcsutil.c | 621 setup_catchsig(sig, sigs) in setup_catchsig() argument 623 int sigs; 628 for (i=sigs; 0<=--i; ) { 642 for (j=sigs; 0<=--j; ) 663 setup_catchsig(sig, sigs) in setup_catchsig() argument 665 int sigs; 671 for (i=sigs; 0<=--i; ) 674 for (i=sigs; 0<=--i; ) 686 setup_catchsig(sig, sigs) in setup_catchsig() argument 688 int sigs; [all …]
|
| /netbsd-src/external/bsd/nvi/dist/ex/ |
| H A D | ex_shell.c | 223 SIGS const sigs[] = { variable 370 sigp = &sigs[0]; n < sizeof(sigs) / sizeof(sigs[0]); ++n, ++sigp) in sigmsg()
|
| /netbsd-src/external/gpl2/diffutils/dist/src/ |
| H A D | sdiff.c | 71 #define NUM_SIGS (sizeof sigs / sizeof *sigs) 72 static int const sigs[] = { variable 797 sigaddset (&catchaction.sa_mask, sigs[i]); in trapsigs() 803 sigaction (sigs[i], 0, &initial_action[i]); in trapsigs() 805 initial_action[i] = signal (sigs[i], SIG_IGN); in trapsigs() 808 signal_handler (sigs[i], catchsig); in trapsigs() 827 if ((! s || sigs[i] == s) && initial_handler (i) != SIG_IGN) in untrapsig() 829 sigaction (sigs[i], &initial_action[i], 0); in untrapsig() 831 signal (sigs[i], initial_action[i]); in untrapsig()
|
| /netbsd-src/bin/sh/ |
| H A D | main.c | 271 static int sigs[] = { in main() local 278 #define SIGSSIZE (sizeof(sigs)/sizeof(sigs[0])) in main() 282 setsignal(sigs[i], 0); in main()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/ |
| H A D | 70-test_sslsigalgs.t | 429 my $sigs; 432 $sigs = pack "C26", 0x00, 0x18, 440 $sigs = pack "C10", 0x00, 0x08, 444 $sigs = pack "C4", 0x00, 0x02, 448 $message->set_extension(TLSProxy::Message::EXT_SIG_ALGS_CERT, $sigs);
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/test/recipes/ |
| H A D | 70-test_sslsigalgs.t | 424 my $sigs; 427 $sigs = pack "C26", 0x00, 0x18, 435 $sigs = pack "C10", 0x00, 0x08, 439 $sigs = pack "C4", 0x00, 0x02, 443 $message->set_extension(TLSProxy::Message::EXT_SIG_ALGS_CERT, $sigs);
|
| H A D | 70-test_renegotiation.t | 124 my $sigs = pack "C10", 0x00, 0x08, 127 $message->set_extension(TLSProxy::Message::EXT_SIG_ALGS_CERT, $sigs);
|
| /netbsd-src/crypto/external/bsd/netpgp/dist/ |
| H A D | TODO | 4 list sigs on a per-user basis 10 convert to and from ascii armored sigs 96 --list-sigs - these come out in __ops_check_subkey_sig() 97 hkp to include sigs too
|
| /netbsd-src/external/bsd/unbound/dist/util/ |
| H A D | ub_event.c | 210 ub_default_event_base(int sigs, time_t* time_secs, struct timeval* time_tv) in ub_default_event_base() argument 216 (void)sigs; in ub_default_event_base() 224 if(sigs) in ub_default_event_base() 229 (void)sigs; in ub_default_event_base()
|
| /netbsd-src/crypto/external/bsd/netpgp/dist/src/libverify/ |
| H A D | verify.h | 216 PGPV_ARRAY(pgpv_signature_t, sigs); 223 PGPV_ARRAY(pgpv_signature_t, sigs); 230 PGPV_ARRAY(pgpv_signature_t, sigs);
|