Searched refs:sigbuf (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/tip/
H A Dtipout.c24 static sigjmp_buf sigbuf; variable
36 siglongjmp(sigbuf, 1);
70 siglongjmp(sigbuf, 1);
87 siglongjmp(sigbuf, 1);
113 (void) sigsetjmp(sigbuf, 1);
/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Dsigning.c192 uint8_t sigbuf[SMBSIGLEN]; local
223 err = smb_compute_MAC(ctx, m, rseqno, sigbuf);
237 if (bcmp(sigbuf, sigloc, SMBSIGLEN) == 0)
248 (void) smb_compute_MAC(ctx, m, rseqno + fudge, sigbuf);
249 if (bcmp(sigbuf, sigloc, SMBSIGLEN) == 0)
251 (void) smb_compute_MAC(ctx, m, rseqno - fudge, sigbuf);
252 if (bcmp(sigbuf, sigloc, SMBSIGLEN) == 0) {
H A Drq.c339 uint32_t sigbuf[2]; local
420 md_get_mem(mbp, (char *)sigbuf, 4, MB_MSYSTEM);
421 if (0 != bcmp(sigbuf, ffsmb, 4)) {
/illumos-gate/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsmb_sign.c238 uint8_t sigbuf[SMBSIGLEN]; local
266 * Compute the expected signature in sigbuf.
269 status = smb_compute_MAC(vcp, mp, rsn, sigbuf);
283 if (bcmp(sigbuf, sigloc, SMBSIGLEN) == 0)
295 (void) smb_compute_MAC(vcp, mp, rsn + fudge, sigbuf);
296 if (bcmp(sigbuf, sigloc, SMBSIGLEN) == 0)
298 (void) smb_compute_MAC(vcp, mp, rsn - fudge, sigbuf);
299 if (bcmp(sigbuf, sigloc, SMBSIGLEN) == 0) {
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dwalkstack.c351 char sigbuf[SIG2STR_MAX]; local
359 sigbuf[0] = '?';
360 sigbuf[1] = 0;
362 (void) sig2str(signo, sigbuf);
365 buffer, (ulong_t)signo, sigbuf);
/illumos-gate/usr/src/uts/common/io/
H A Dcmlb.c2393 char sigbuf[2];
2484 bcopy(&mbp->signature, sigbuf, sizeof (sigbuf));
2489 if (((sigbuf[1] & 0xFF) != ((MBB_MAGIC >> 8) & 0xFF)) ||
2490 (sigbuf[0] != (MBB_MAGIC & 0xFF))) {

Completed in 79 milliseconds