/src/sys/arch/hppa/gsc/ |
harmonyvar.h | 76 void (*c_intr)(void *); member in struct:harmony_channel
|
harmony.c | 1007 c->c_intr = intr; 1126 c->c_intr = intr; 1257 if (nsegs != 0 && c->c_intr != NULL) { 1259 (*c->c_intr)(c->c_intrarg);
|
/src/sys/dev/ata/ |
ata_recovery.c | 197 xfer->ops->c_intr(chp, xfer, ATACH_ERR_ST(err, st)); 209 xfer->ops->c_intr(chp, xfer, tfd);
|
ata_subr.c | 259 xfer->ops->c_intr(xfer->c_chp, xfer, 0);
|
atavar.h | 185 int (*c_intr)(struct ata_channel *, struct ata_xfer *, int); member in struct:ata_xfer_ops
|
ata_wdc.c | 138 .c_intr = wdc_ata_bio_intr,
|
/src/sys/dev/ic/ |
ahcisata_core.c | 732 xfer->ops->c_intr(chp, xfer, tfd); 740 * Note: active slots can change as c_intr() callback 749 xfer->ops->c_intr(chp, xfer, tfd); 1143 .c_intr = ahci_cmd_complete, 1260 xfer->ops->c_intr(chp, xfer, 0); 1399 .c_intr = ahci_bio_complete, 1503 xfer->ops->c_intr(chp, xfer, 0); 1858 .c_intr = ahci_atapi_complete, 2001 xfer->ops->c_intr(chp, xfer, 0);
|
siisata.c | 594 xfer->ops->c_intr(chp, xfer, tfd); 601 * Note: active slots can change as c_intr() callback 611 xfer->ops->c_intr(chp, xfer, 0); 926 .c_intr = siisata_cmd_complete, 1170 .c_intr = siisata_bio_complete, 1718 .c_intr = siisata_atapi_complete,
|
wdc.c | 937 KASSERT(xfer->ops != NULL && xfer->ops->c_intr != NULL); 938 ret = xfer->ops->c_intr(chp, xfer, 1); 1386 KASSERT(xfer->ops != NULL && xfer->ops->c_intr != NULL); 1387 xfer->ops->c_intr(chp, xfer, 1); 1397 .c_intr = __wdccommand_intr,
|
mvsata.c | 465 ret = xfer->ops->c_intr(chp, xfer, 1); 982 .c_intr = mvsata_bio_intr, 1593 .c_intr = mvsata_wdc_cmd_intr, 1940 .c_intr = mvsata_atapi_intr,
|
/src/sys/dev/scsipi/ |
atapi_wdc.c | 359 .c_intr = wdc_atapi_intr,
|