Searched refs:sig (Results 26 - 50 of 739) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/cvs/lib/
H A Dsighandle.c151 static RETSIGTYPE SIG_handle(sig)
152 int sig;
157 this = SIG_handlers[sig];
163 (*current->handler)(sig);
178 int SIG_register(sig,fn)
179 int sig;
202 (void) sigaddset(&sigset_mask, sig);
206 mask = sigblock(sigmask(sig));
211 this = SIG_handlers[sig];
227 if (SIG_handlers[sig]
[all...]
/openbsd-current/usr.sbin/pkg_add/OpenBSD/
H A DError.pm64 sub($sig, @) {
65 &$v($sig);
66 $SIG{$sig} = $self->{$sig};
67 kill -$sig, $$;
75 # END blocks would do that (but see below...) but sig handling bypasses that,
88 sub cleanup($class, $sig)
92 &$v($sig);
117 my $handler = sub($sig, @) {
118 __PACKAGE__->cleanup($sig);
[all...]
/openbsd-current/gnu/gcc/gcc/
H A Dsreal.c26 x = sig * 2 ^ exp
28 sig = significant
29 (for < 64-bit machines sig = sig_lo + sig_hi * 2 ^ SREAL_PART_BITS)
36 not have problems with overflow, for example when c->sig = a->sig * b->sig.
43 SREAL_MIN_SIG <= sig && sig <= SREAL_MAX_SIG
50 sig == 0 && exp == -SREAL_MAX_EXP
73 fprintf (file, "(" HOST_WIDE_INT_PRINT_UNSIGNED " * 2^%d)", x->sig,
271 sreal_init(sreal *r, unsigned HOST_WIDE_INT sig, signed int exp) argument
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/vx-share/
H A Dwait.h27 #define WSETSTOP(w,sig) ((w) = (0177 | ((sig) << 8)))
44 #define WSETSTOP(w,sig) \
45 ((w).w_stopsig = (sig), (w).w_coredump = 0, (w).w_termsig = 0177)
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dgdb_wait.h98 #define WSETSTOP(w,sig) ((w) = W_STOPCODE(sig))
100 #define WSETSTOP(w,sig) ((w) = (0177 | ((sig) << 8)))
/openbsd-current/usr.bin/bc/
H A Dtty.c48 tstpcont(int sig) argument
52 if (sig == SIGTSTP) {
60 signal(sig, SIG_DFL);
61 kill(0, sig);
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.mi/
H A Dmi-syn-frame.c41 handler (int sig) argument
43 subroutine (sig);
/openbsd-current/gnu/lib/libreadline/
H A Dsignals.c110 rl_signal_handler (sig)
111 int sig;
128 if (sig == SIGINT || sig == SIGALRM)
129 rl_set_sighandler (sig, SIG_IGN, &dummy_cxt);
132 switch (sig)
150 sigdelset (&set, sig);
158 signal (sig, SIG_ACK);
161 kill (getpid (), sig); local
168 sigsetmask (omask & ~(sigmask (sig)));
[all...]
/openbsd-current/regress/usr.bin/ssh/unittests/sshsig/
H A Dmktestdata.sh21 rm -f rsa.sig dsa.sig ecdsa.sig ed25519.sig ecdsa_sk.sig ed25519_sk.sig
35 ssh-keygen -Y sign -f rsa -n $NAMESPACE - < signed-data > rsa.sig
36 ssh-keygen -Y sign -f dsa -n $NAMESPACE - < signed-data > dsa.sig
37 ssh-keygen -Y sign -f ecdsa -n $NAMESPACE - < signed-data > ecdsa.sig
38 ssh-keygen -Y sign -f ed25519 -n $NAMESPACE - < signed-data > ed25519.sig
[all...]
/openbsd-current/lib/libcrypto/asn1/
H A Dx_sig.c119 X509_SIG_get0(const X509_SIG *sig, const X509_ALGOR **palg, argument
123 *palg = sig->algor;
125 *pdigest = sig->digest;
130 X509_SIG_getm(X509_SIG *sig, X509_ALGOR **palg, ASN1_OCTET_STRING **pdigest) argument
133 *palg = sig->algor;
135 *pdigest = sig->digest;
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dsigname_canonical.t35 foreach my $sig (@SIGNAMES) {
36 my $signum = $SIG_MAP{$sig};
37 $CANONICAL_SIG{$signum} //= $sig;
38 push @duplicate_signals, $sig if $CANONICAL_SIG{$signum} ne $sig;
/openbsd-current/sys/sys/
H A Dsignalvar.h113 void pgsigio(struct sigio_ref *sir, int sig, int checkctty);
114 void pgsignal(struct pgrp *pgrp, int sig, int checkctty);
115 void psignal(struct proc *p, int sig);
116 void ptsignal(struct proc *p, int sig, enum signal_type type);
117 #define prsignal(pr,sig) ptsignal((pr)->ps_mainproc, (sig), SPROCESS)
118 void trapsignal(struct proc *p, int sig, u_long code, int type,
/openbsd-current/regress/sys/kern/itimer/
H A Ditimer.c28 int which, sig; local
35 sig = SIGALRM;
39 sig = SIGVTALRM;
43 sig = SIGPROF;
51 signal(sig, sighand);
/openbsd-current/gnu/usr.bin/binutils/bfd/
H A Dcisco-core.c72 int sig;
168 abfd->tdata.cisco_core_data->sig = 0;
173 abfd->tdata.cisco_core_data->sig = 0;
186 case 2 : abfd->tdata.cisco_core_data->sig = SIGBUS; break;
188 case 3 : abfd->tdata.cisco_core_data->sig = SIGBUS; break;
190 case 4 : abfd->tdata.cisco_core_data->sig = SIGILL; break;
192 case 5 : abfd->tdata.cisco_core_data->sig = SIGFPE; break;
194 case 6 : abfd->tdata.cisco_core_data->sig = SIGFPE; break;
196 case 7 : abfd->tdata.cisco_core_data->sig = SIGFPE; break;
198 case 8 : abfd->tdata.cisco_core_data->sig
71 int sig; member in struct:cisco_core_struct
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/bfd/
H A Dcisco-core.c72 int sig;
168 abfd->tdata.cisco_core_data->sig = 0;
173 abfd->tdata.cisco_core_data->sig = 0;
186 case 2 : abfd->tdata.cisco_core_data->sig = SIGBUS; break;
188 case 3 : abfd->tdata.cisco_core_data->sig = SIGBUS; break;
190 case 4 : abfd->tdata.cisco_core_data->sig = SIGILL; break;
192 case 5 : abfd->tdata.cisco_core_data->sig = SIGFPE; break;
194 case 6 : abfd->tdata.cisco_core_data->sig = SIGFPE; break;
196 case 7 : abfd->tdata.cisco_core_data->sig = SIGFPE; break;
198 case 8 : abfd->tdata.cisco_core_data->sig
71 int sig; member in struct:cisco_core_struct
[all...]
/openbsd-current/regress/lib/libpthread/pause/
H A Dpause.c48 handler(sig)
49 int sig;
54 snprintf(buf, sizeof buf, "%s\n", strsignal(sig));
/openbsd-current/regress/lib/libpthread/sigmask/
H A Dsigmask.c19 int sig; local
46 CHECKr(sigwait(&mask, &sig));
47 ASSERT(sig == SIGALRM);
/openbsd-current/sys/arch/i386/stand/libsa/
H A Dpciprobe.c41 u_int32_t hw_chars, rev, rc, sig; local
47 "=d" (sig), "=D" (entry32), "=@ccc" (rc)
53 if (sig != PCI_SIG)
/openbsd-current/lib/libfido2/src/
H A Drs1.c25 const fido_blob_t *sig)
49 if (EVP_PKEY_verify(pctx, sig->ptr, sig->len, dgst->ptr,
24 rs1_verify_sig(const fido_blob_t *dgst, EVP_PKEY *pkey, const fido_blob_t *sig) argument
/openbsd-current/regress/lib/libsndio/
H A Dtools.c29 *p++ = par->sig ? 's' : 'u';
58 int i, sig, bits, le, bps, msb; local
69 sig = 1;
71 sig = 0;
133 par->sig = sig;
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dsiginfo.c30 handler (int sig, siginfo_t *info, void *context) argument
36 handler (int sig) argument
/openbsd-current/gnu/usr.bin/binutils/include/
H A Dwait.h61 #define WSETSTOP(w,sig) ((w) = (0177 | ((sig) << 8)))
/openbsd-current/regress/lib/libpthread/process_kill/
H A Dprocess_kill.c13 deadlock(int sig) argument
19 handler(int sig) argument
/openbsd-current/usr.bin/ssh/
H A Dxmss_wots.h47 * Takes a m-byte message and the 32-byte seed for the secret key to compute a signature that is placed at "sig".
50 int wots_sign(unsigned char *sig, const unsigned char *msg, const unsigned char *sk, const wots_params *params, const unsigned char *pub_seed, uint32_t addr[8]);
56 int wots_pkFromSig(unsigned char *pk, const unsigned char *sig, const unsigned char *msg, const wots_params *params, const unsigned char *pub_seed, uint32_t addr[8]);
/openbsd-current/gnu/llvm/lldb/tools/driver/
H A DPlatform.cpp41 int kill(pid_t pid, int sig) { argument
44 exit(sig);

Completed in 335 milliseconds

1234567891011>>