/src/sys/kern/ |
sys_pipe.c | 373 pipeselwakeup(struct pipe *selp, struct pipe *sigp, int code) 400 if (sigp == NULL || (sigp->pipe_state & PIPE_ASYNC) == 0) 403 fownsignal(sigp->pipe_pgid, SIGIO, code, band, selp);
|
/src/sys/dev/ic/ |
siisata.c | 665 siisata_reset_drive(struct ata_drive_datas *drvp, int flags, uint32_t *sigp) 733 if (sigp) 734 *sigp = 0xffffffff; 737 if (sigp) { 738 *sigp = 0; 739 *sigp |= (PRREAD(sc, PRSX(chp->ch_channel, c_slot, 741 *sigp |= PRREAD(sc, PRSX(chp->ch_channel, c_slot,
|
ahcisata_core.c | 765 ahci_reset_drive(struct ata_drive_datas *drvp, int flags, uint32_t *sigp) 784 ahci_do_reset_drive(chp, drvp->drive, flags, sigp, c_slot); 841 uint32_t *sigp, uint8_t c_slot) 977 if (sigp) 978 *sigp = sig;
|
wdc.c | 946 wdc_reset_drive(struct ata_drive_datas *drvp, int flags, uint32_t *sigp) 952 KASSERT(sigp == NULL);
|
mvsata.c | 618 mvsata_reset_drive(struct ata_drive_datas *drvp, int flags, uint32_t *sigp) 641 if (sigp) 642 *sigp = sig;
|
/src/bin/ksh/ |
jobs.c | 720 waitfor(cp, sigp) 722 int *sigp; 732 *sigp = 0; 766 *sigp = 128 + -rv;
|
/src/sys/netinet/ |
tcp_syncache.c | 1094 u_int8_t *sigp = NULL; local in function:syn_cache_respond 1220 sigp = optp; 1250 (void)tcp_signature(m, th, hlen, sav, sigp);
|
tcp_input.c | 3092 void *sigp = NULL; local in function:tcp_dooptions 3208 if (sigp && 3209 !consttime_memequal(sigp, cp + 2, TCP_SIGLEN)) 3212 sigp = sigbuf; 3229 if ((sigp ? TF_SIGNATURE : 0) ^ (tp->t_flags & TF_SIGNATURE)) 3232 if (sigp) { 3242 if (!consttime_memequal(sig, sigp, TCP_SIGLEN)) {
|
tcp_output.c | 1404 u_int8_t *sigp; local in function:tcp_output 1413 sigp = (char *)th + sizeof(*th) + sigoff; 1414 tcp_signature(m, th, (char *)th - mtod(m, char *), sav, sigp);
|