Symbol: ata_xfer
sys/dev/ata/ata.c
1052
ata_exec_xfer(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ata/ata.c
1124
struct ata_xfer *xfer, *axfer;
sys/dev/ata/ata.c
1269
ata_xfer_start(struct ata_xfer *xfer)
sys/dev/ata/ata.c
1307
ata_activate_xfer_locked(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ata/ata.c
1332
struct ata_xfer *
sys/dev/ata/ata.c
1343
ata_free_xfer(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ata/ata.c
137
static void ata_activate_xfer_locked(struct ata_channel *, struct ata_xfer *);
sys/dev/ata/ata.c
1379
ata_deactivate_xfer(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ata/ata.c
1417
ata_waitdrain_xfer_check(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ata/ata.c
1444
ata_timo_xfer_check(struct ata_xfer *xfer)
sys/dev/ata/ata.c
1491
struct ata_xfer *xfer, *xfernext;
sys/dev/ata/ata.c
150
pool_init(&ata_xfer_pool, sizeof(struct ata_xfer), 0, 0, 0,
sys/dev/ata/ata.c
1510
struct ata_xfer *xfer;
sys/dev/ata/ata.c
2375
atacmd_toncq(struct ata_xfer *xfer, uint8_t *cmd, uint16_t *count,
sys/dev/ata/ata.c
2405
ata_wait_cmd(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ata/ata.c
443
struct ata_xfer *xfer;
sys/dev/ata/ata.c
817
struct ata_xfer *xfer;
sys/dev/ata/ata.c
919
struct ata_xfer *xfer;
sys/dev/ata/ata.c
957
struct ata_xfer *xfer;
sys/dev/ata/ata_recovery.c
165
struct ata_xfer *xfer;
sys/dev/ata/ata_recovery.c
72
struct ata_xfer *xfer = &chp->recovery_xfer;
sys/dev/ata/ata_subr.c
108
struct ata_xfer *
sys/dev/ata/ata_subr.c
111
struct ata_xfer *xfer;
sys/dev/ata/ata_subr.c
130
struct ata_xfer *
sys/dev/ata/ata_subr.c
133
struct ata_xfer *xfer = NULL;
sys/dev/ata/ata_subr.c
142
struct ata_xfer *
sys/dev/ata/ata_subr.c
145
struct ata_xfer *xfer = NULL;
sys/dev/ata/ata_subr.c
231
struct ata_xfer *xfer, *nxfer;
sys/dev/ata/ata_subr.c
80
struct ata_xfer *
sys/dev/ata/ata_subr.c
84
struct ata_xfer *xfer = NULL;
sys/dev/ata/ata_wdc.c
106
static void wdc_ata_bio(struct ata_drive_datas*, struct ata_xfer *);
sys/dev/ata/ata_wdc.c
107
static int wdc_ata_bio_start(struct ata_channel *,struct ata_xfer *);
sys/dev/ata/ata_wdc.c
108
static int _wdc_ata_bio_start(struct ata_channel *,struct ata_xfer *);
sys/dev/ata/ata_wdc.c
109
static int wdc_ata_bio_poll(struct ata_channel *,struct ata_xfer *);
sys/dev/ata/ata_wdc.c
110
static int wdc_ata_bio_intr(struct ata_channel *, struct ata_xfer *,
sys/dev/ata/ata_wdc.c
113
struct ata_xfer *, int);
sys/dev/ata/ata_wdc.c
114
static void wdc_ata_bio_done(struct ata_channel *, struct ata_xfer *);
sys/dev/ata/ata_wdc.c
147
wdc_ata_bio(struct ata_drive_datas *drvp, struct ata_xfer *xfer)
sys/dev/ata/ata_wdc.c
177
wdc_ata_bio_start(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ata/ata_wdc.c
335
_wdc_ata_bio_start(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ata/ata_wdc.c
609
wdc_ata_bio_poll(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ata/ata_wdc.c
624
wdc_ata_bio_intr(struct ata_channel *chp, struct ata_xfer *xfer, int irq)
sys/dev/ata/ata_wdc.c
790
wdc_ata_bio_kill_xfer(struct ata_channel *chp, struct ata_xfer *xfer,
sys/dev/ata/ata_wdc.c
823
wdc_ata_bio_done(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ata/atavar.h
165
SIMPLEQ_ENTRY(ata_xfer) c_xferchain;
sys/dev/ata/atavar.h
166
TAILQ_ENTRY(ata_xfer) c_activechain;
sys/dev/ata/atavar.h
169
SLIST_ENTRY(ata_xfer) c_retrychain;
sys/dev/ata/atavar.h
176
int (*c_start)(struct ata_channel *, struct ata_xfer *);
sys/dev/ata/atavar.h
181
int (*c_poll)(struct ata_channel *, struct ata_xfer *);
sys/dev/ata/atavar.h
184
void (*c_abort)(struct ata_channel *, struct ata_xfer *);
sys/dev/ata/atavar.h
185
int (*c_intr)(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ata/atavar.h
186
void (*c_kill_xfer)(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ata/atavar.h
231
SIMPLEQ_HEAD(, ata_xfer) queue_xfer; /* queue of pending commands */
sys/dev/ata/atavar.h
235
TAILQ_HEAD(, ata_xfer) active_xfers; /* active commands */
sys/dev/ata/atavar.h
333
void (*drv_done)(device_t, struct ata_xfer *); /* xfer is done */
sys/dev/ata/atavar.h
363
void (*ata_bio)(struct ata_drive_datas *, struct ata_xfer *);
sys/dev/ata/atavar.h
367
struct ata_xfer *);
sys/dev/ata/atavar.h
449
struct ata_xfer recovery_xfer;
sys/dev/ata/atavar.h
542
struct ata_xfer *ata_get_xfer(struct ata_channel *, bool);
sys/dev/ata/atavar.h
543
void ata_free_xfer(struct ata_channel *, struct ata_xfer *);
sys/dev/ata/atavar.h
544
void ata_deactivate_xfer(struct ata_channel *, struct ata_xfer *);
sys/dev/ata/atavar.h
545
void ata_exec_xfer(struct ata_channel *, struct ata_xfer *);
sys/dev/ata/atavar.h
546
int ata_xfer_start(struct ata_xfer *xfer);
sys/dev/ata/atavar.h
547
void ata_wait_cmd(struct ata_channel *, struct ata_xfer *xfer);
sys/dev/ata/atavar.h
550
bool ata_timo_xfer_check(struct ata_xfer *);
sys/dev/ata/atavar.h
573
struct ata_xfer *
sys/dev/ata/atavar.h
575
struct ata_xfer *
sys/dev/ata/atavar.h
577
struct ata_xfer *
sys/dev/ata/atavar.h
579
struct ata_xfer *
sys/dev/ata/atavar.h
590
bool ata_waitdrain_xfer_check(struct ata_channel *, struct ata_xfer *);
sys/dev/ata/atavar.h
592
void atacmd_toncq(struct ata_xfer *, uint8_t *, uint16_t *, uint16_t *,
sys/dev/ata/satafis_subr.c
101
satafis_rhd_construct_bio(struct ata_xfer *xfer, uint8_t *fis)
sys/dev/ata/satafis_subr.c
150
satafis_rhd_construct_atapi(struct ata_xfer *xfer, uint8_t *fis)
sys/dev/ata/satafisvar.h
34
void satafis_rhd_construct_bio(struct ata_xfer *, uint8_t *);
sys/dev/ata/satafisvar.h
35
void satafis_rhd_construct_atapi(struct ata_xfer *, uint8_t *);
sys/dev/ata/satapmp_subr.c
106
struct ata_xfer *xfer)
sys/dev/ata/satapmp_subr.c
121
struct ata_xfer *xfer)
sys/dev/ata/satapmp_subr.c
174
struct ata_xfer *xfer)
sys/dev/ata/satapmp_subr.c
185
struct ata_xfer *xfer)
sys/dev/ata/satapmp_subr.c
239
satapmp_rescan(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ata/satapmp_subr.c
273
struct ata_xfer *xfer;
sys/dev/ata/satapmp_subr.c
52
struct ata_xfer *xfer)
sys/dev/ata/wd.c
1054
struct ata_xfer *xfer;
sys/dev/ata/wd.c
1071
struct ata_xfer *xfer;
sys/dev/ata/wd.c
124
static void wdperror(const struct wd_softc *, struct ata_xfer *);
sys/dev/ata/wd.c
1334
wdperror(const struct wd_softc *wd, struct ata_xfer *xfer)
sys/dev/ata/wd.c
1734
struct ata_xfer *xfer = &wd->dump_xfer;
sys/dev/ata/wd.c
1904
wd_check_error(const struct dk_softc *dksc, const struct ata_xfer *xfer,
sys/dev/ata/wd.c
1930
struct ata_xfer *xfer;
sys/dev/ata/wd.c
1969
struct ata_xfer *xfer;
sys/dev/ata/wd.c
1993
struct ata_xfer *xfer;
sys/dev/ata/wd.c
201
static void wdstart1(struct wd_softc *, struct buf *, struct ata_xfer *);
sys/dev/ata/wd.c
2034
struct ata_xfer *xfer;
sys/dev/ata/wd.c
208
static void wddone(device_t, struct ata_xfer *);
sys/dev/ata/wd.c
2179
struct ata_xfer *xfer;
sys/dev/ata/wd.c
687
wdstart1(struct wd_softc *wd, struct buf *bp, struct ata_xfer *xfer)
sys/dev/ata/wd.c
808
struct ata_xfer *xfer;
sys/dev/ata/wd.c
889
wddone(device_t self, struct ata_xfer *xfer)
sys/dev/ata/wdvar.h
89
SLIST_HEAD(, ata_xfer) sc_retry_list;
sys/dev/ata/wdvar.h
93
SLIST_HEAD(, ata_xfer) sc_requeue_list;
sys/dev/ata/wdvar.h
96
struct ata_xfer dump_xfer;
sys/dev/ic/ahcisata_core.c
100
static int ahci_atapi_complete(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/ahcisata_core.c
101
static void ahci_atapi_kill_xfer(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/ahcisata_core.c
1148
ahci_exec_command(struct ata_drive_datas *drvp, struct ata_xfer *xfer)
sys/dev/ic/ahcisata_core.c
1170
ahci_cmd_start(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/ahcisata_core.c
1228
ahci_cmd_poll(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/ahcisata_core.c
1269
ahci_cmd_abort(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/ahcisata_core.c
1275
ahci_cmd_kill_xfer(struct ata_channel *chp, struct ata_xfer *xfer, int reason)
sys/dev/ic/ahcisata_core.c
1308
ahci_cmd_complete(struct ata_channel *chp, struct ata_xfer *xfer, int tfd)
sys/dev/ic/ahcisata_core.c
1350
ahci_cmd_done(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/ahcisata_core.c
1388
ahci_cmd_done_end(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/ahcisata_core.c
1404
ahci_ata_bio(struct ata_drive_datas *drvp, struct ata_xfer *xfer)
sys/dev/ic/ahcisata_core.c
1423
ahci_bio_start(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/ahcisata_core.c
1478
ahci_bio_poll(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/ahcisata_core.c
1511
ahci_bio_abort(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/ahcisata_core.c
1517
ahci_bio_kill_xfer(struct ata_channel *chp, struct ata_xfer *xfer, int reason)
sys/dev/ic/ahcisata_core.c
1553
ahci_bio_complete(struct ata_channel *chp, struct ata_xfer *xfer, int tfd)
sys/dev/ic/ahcisata_core.c
1871
struct ata_xfer *xfer;
sys/dev/ic/ahcisata_core.c
1918
ahci_atapi_start(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/ahcisata_core.c
1976
ahci_atapi_poll(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/ahcisata_core.c
2009
ahci_atapi_abort(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/ahcisata_core.c
2015
ahci_atapi_complete(struct ata_channel *chp, struct ata_xfer *xfer, int tfd)
sys/dev/ic/ahcisata_core.c
2068
ahci_atapi_kill_xfer(struct ata_channel *chp, struct ata_xfer *xfer, int reason)
sys/dev/ic/ahcisata_core.c
62
static void ahci_ata_bio(struct ata_drive_datas *, struct ata_xfer *);
sys/dev/ic/ahcisata_core.c
649
struct ata_xfer *xfer;
sys/dev/ic/ahcisata_core.c
67
static void ahci_exec_command(struct ata_drive_datas *, struct ata_xfer *);
sys/dev/ic/ahcisata_core.c
72
static int ahci_cmd_start(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/ahcisata_core.c
73
static int ahci_cmd_complete(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/ahcisata_core.c
74
static int ahci_cmd_poll(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/ahcisata_core.c
75
static void ahci_cmd_abort(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/ahcisata_core.c
76
static void ahci_cmd_done(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/ahcisata_core.c
77
static void ahci_cmd_done_end(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/ahcisata_core.c
78
static void ahci_cmd_kill_xfer(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/ahcisata_core.c
79
static int ahci_bio_start(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/ahcisata_core.c
80
static int ahci_bio_poll(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/ahcisata_core.c
81
static void ahci_bio_abort(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/ahcisata_core.c
82
static int ahci_bio_complete(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/ahcisata_core.c
83
static void ahci_bio_kill_xfer(struct ata_channel *, struct ata_xfer *, int) ;
sys/dev/ic/ahcisata_core.c
97
static int ahci_atapi_start(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/ahcisata_core.c
98
static int ahci_atapi_poll(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/ahcisata_core.c
99
static void ahci_atapi_abort(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/mvsata.c
1016
mvsata_bio_start(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
1245
mvsata_bio_poll(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
125
static void mvsata_bio(struct ata_drive_datas *, struct ata_xfer *);
sys/dev/ic/mvsata.c
1264
mvsata_bio_intr(struct ata_channel *chp, struct ata_xfer *xfer, int intr_arg)
sys/dev/ic/mvsata.c
127
static void mvsata_exec_command(struct ata_drive_datas *, struct ata_xfer *);
sys/dev/ic/mvsata.c
1398
mvsata_bio_kill_xfer(struct ata_channel *chp, struct ata_xfer *xfer, int reason)
sys/dev/ic/mvsata.c
1444
mvsata_bio_done(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
145
static int mvsata_bio_start(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/mvsata.c
146
static int mvsata_bio_intr(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/mvsata.c
147
static int mvsata_bio_poll(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/mvsata.c
148
static void mvsata_bio_kill_xfer(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/mvsata.c
149
static void mvsata_bio_done(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/mvsata.c
152
static int mvsata_wdc_cmd_start(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/mvsata.c
153
static int mvsata_wdc_cmd_intr(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/mvsata.c
154
static int mvsata_wdc_cmd_poll(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/mvsata.c
155
static void mvsata_wdc_cmd_kill_xfer(struct ata_channel *, struct ata_xfer *,
sys/dev/ic/mvsata.c
157
static void mvsata_wdc_cmd_done(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/mvsata.c
158
static void mvsata_wdc_cmd_done_end(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/mvsata.c
1596
mvsata_exec_command(struct ata_drive_datas *drvp, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
160
static int mvsata_atapi_start(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/mvsata.c
161
static int mvsata_atapi_intr(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/mvsata.c
162
static int mvsata_atapi_poll(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/mvsata.c
1623
mvsata_wdc_cmd_start(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
163
static void mvsata_atapi_kill_xfer(struct ata_channel *, struct ata_xfer *,
sys/dev/ic/mvsata.c
165
static void mvsata_atapi_reset(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/mvsata.c
166
static void mvsata_atapi_phase_complete(struct ata_xfer *, int);
sys/dev/ic/mvsata.c
167
static void mvsata_atapi_done(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/mvsata.c
1682
mvsata_wdc_cmd_poll(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
1694
mvsata_wdc_cmd_intr(struct ata_channel *chp, struct ata_xfer *xfer, int irq)
sys/dev/ic/mvsata.c
171
static int mvsata_edma_enqueue(struct mvsata_port *, struct ata_xfer *);
sys/dev/ic/mvsata.c
172
static int mvsata_edma_handle(struct mvsata_port *, struct ata_xfer *);
sys/dev/ic/mvsata.c
173
static int mvsata_edma_wait(struct mvsata_port *, struct ata_xfer *, int);
sys/dev/ic/mvsata.c
174
static void mvsata_edma_rqq_remove(struct mvsata_port *, struct ata_xfer *);
sys/dev/ic/mvsata.c
176
static int mvsata_bdma_init(struct mvsata_port *, struct ata_xfer *);
sys/dev/ic/mvsata.c
1814
mvsata_wdc_cmd_kill_xfer(struct ata_channel *chp, struct ata_xfer *xfer,
sys/dev/ic/mvsata.c
1851
mvsata_wdc_cmd_done(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
1919
mvsata_wdc_cmd_done_end(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
1952
struct ata_xfer *xfer;
sys/dev/ic/mvsata.c
2000
mvsata_atapi_start(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
206
struct ata_xfer *);
sys/dev/ic/mvsata.c
216
struct ata_xfer *);
sys/dev/ic/mvsata.c
2168
mvsata_atapi_poll(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
2199
mvsata_atapi_intr(struct ata_channel *chp, struct ata_xfer *xfer, int irq)
sys/dev/ic/mvsata.c
2430
mvsata_atapi_kill_xfer(struct ata_channel *chp, struct ata_xfer *xfer,
sys/dev/ic/mvsata.c
2465
mvsata_atapi_reset(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
2492
mvsata_atapi_phase_complete(struct ata_xfer *xfer, int tfd)
sys/dev/ic/mvsata.c
2582
mvsata_atapi_done(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
2616
struct ata_xfer *xfer = ata_queue_get_active_xfer(chp);
sys/dev/ic/mvsata.c
2634
mvsata_edma_enqueue(struct mvsata_port *mvport, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
2712
mvsata_edma_handle(struct mvsata_port *mvport, struct ata_xfer *xfer1)
sys/dev/ic/mvsata.c
2717
struct ata_xfer *xfer;
sys/dev/ic/mvsata.c
279
(struct mvsata_port *, int, struct ata_xfer *) = NULL;
sys/dev/ic/mvsata.c
2839
mvsata_edma_wait(struct mvsata_port *mvport, struct ata_xfer *xfer, int timeout)
sys/dev/ic/mvsata.c
2856
mvsata_edma_rqq_remove(struct mvsata_port *mvport, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
2875
struct ata_xfer *rqxfer;
sys/dev/ic/mvsata.c
2912
mvsata_bdma_init(struct mvsata_port *mvport, struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
3538
struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
3787
struct ata_xfer *xfer)
sys/dev/ic/mvsata.c
448
struct ata_xfer *xfer;
sys/dev/ic/mvsata.c
990
mvsata_bio(struct ata_drive_datas *drvp, struct ata_xfer *xfer)
sys/dev/ic/mvsatavar.h
135
struct ata_xfer *);
sys/dev/ic/siisata.c
1010
siisata_cmd_poll(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/siisata.c
1039
siisata_cmd_abort(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/siisata.c
1045
siisata_cmd_kill_xfer(struct ata_channel *chp, struct ata_xfer *xfer,
sys/dev/ic/siisata.c
1079
siisata_cmd_complete(struct ata_channel *chp, struct ata_xfer *xfer, int tfd)
sys/dev/ic/siisata.c
1118
siisata_cmd_done(struct ata_channel *chp, struct ata_xfer *xfer, int tfd)
sys/dev/ic/siisata.c
1161
siisata_cmd_done_end(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/siisata.c
1177
siisata_ata_bio(struct ata_drive_datas *drvp, struct ata_xfer *xfer)
sys/dev/ic/siisata.c
1196
siisata_bio_start(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/siisata.c
1239
siisata_bio_poll(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/siisata.c
1267
siisata_bio_abort(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/siisata.c
1273
siisata_bio_kill_xfer(struct ata_channel *chp, struct ata_xfer *xfer,
sys/dev/ic/siisata.c
1314
siisata_bio_complete(struct ata_channel *chp, struct ata_xfer *xfer, int tfd)
sys/dev/ic/siisata.c
143
void siisata_ata_bio(struct ata_drive_datas *, struct ata_xfer *);
sys/dev/ic/siisata.c
150
int siisata_cmd_start(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/siisata.c
151
int siisata_cmd_complete(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/siisata.c
152
int siisata_cmd_poll(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/siisata.c
153
void siisata_cmd_abort(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/siisata.c
154
void siisata_cmd_done(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/siisata.c
155
static void siisata_cmd_done_end(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/siisata.c
156
void siisata_cmd_kill_xfer(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/siisata.c
158
int siisata_bio_start(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/siisata.c
1581
siisata_atapi_kill_xfer(struct ata_channel *chp, struct ata_xfer *xfer,
sys/dev/ic/siisata.c
159
int siisata_bio_complete(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/siisata.c
160
int siisata_bio_poll(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/siisata.c
161
void siisata_bio_abort(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/siisata.c
162
void siisata_bio_kill_xfer(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/siisata.c
163
void siisata_exec_command(struct ata_drive_datas *, struct ata_xfer *);
sys/dev/ic/siisata.c
1733
struct ata_xfer *xfer;
sys/dev/ic/siisata.c
176
int siisata_atapi_start(struct ata_channel *,struct ata_xfer *);
sys/dev/ic/siisata.c
177
int siisata_atapi_complete(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/siisata.c
178
int siisata_atapi_poll(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/siisata.c
1785
siisata_atapi_start(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/siisata.c
179
void siisata_atapi_abort(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/siisata.c
180
void siisata_atapi_kill_xfer(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/siisata.c
1843
siisata_atapi_poll(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/siisata.c
1870
siisata_atapi_abort(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/siisata.c
1876
siisata_atapi_complete(struct ata_channel *chp, struct ata_xfer *xfer,
sys/dev/ic/siisata.c
513
struct ata_xfer *xfer = NULL;
sys/dev/ic/siisata.c
933
siisata_exec_command(struct ata_drive_datas *drvp, struct ata_xfer *xfer)
sys/dev/ic/siisata.c
959
siisata_cmd_start(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/wdc.c
1014
struct ata_xfer *xfer;
sys/dev/ic/wdc.c
1298
struct ata_xfer *xfer;
sys/dev/ic/wdc.c
1369
wdc_dmawait(struct ata_channel *chp, struct ata_xfer *xfer, int timeout)
sys/dev/ic/wdc.c
1392
struct ata_xfer *xfer;
sys/dev/ic/wdc.c
1453
wdc_exec_command(struct ata_drive_datas *drvp, struct ata_xfer *xfer)
sys/dev/ic/wdc.c
1478
__wdccommand_start(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/wdc.c
151
static void __wdccommand_done(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/wdc.c
152
static int __wdccommand_poll(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/wdc.c
153
static void __wdccommand_done_end(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/wdc.c
1542
__wdccommand_poll(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/wdc.c
1549
__wdccommand_intr(struct ata_channel *chp, struct ata_xfer *xfer, int irq)
sys/dev/ic/wdc.c
155
struct ata_xfer *, int);
sys/dev/ic/wdc.c
156
static int __wdccommand_start(struct ata_channel *, struct ata_xfer *);
sys/dev/ic/wdc.c
157
static int __wdccommand_intr(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/wdc.c
1675
__wdccommand_done(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/wdc.c
1764
__wdccommand_done_end(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/ic/wdc.c
1772
__wdccommand_kill_xfer(struct ata_channel *chp, struct ata_xfer *xfer,
sys/dev/ic/wdc.c
1933
struct ata_xfer *xfer = ata_queue_get_active_xfer(chp);
sys/dev/ic/wdc.c
938
struct ata_xfer *xfer;
sys/dev/ic/wdcvar.h
168
int wdc_dmawait(struct ata_channel *, struct ata_xfer *, int);
sys/dev/ic/wdcvar.h
179
void wdc_exec_command(struct ata_drive_datas *, struct ata_xfer *);
sys/dev/scsipi/atapi_wdc.c
1054
wdc_atapi_phase_complete(struct ata_xfer *xfer, int tfd)
sys/dev/scsipi/atapi_wdc.c
1147
wdc_atapi_done(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/scsipi/atapi_wdc.c
1170
wdc_atapi_reset(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/scsipi/atapi_wdc.c
1195
struct ata_xfer *xfer = ata_queue_get_active_xfer(chp);
sys/dev/scsipi/atapi_wdc.c
174
wdc_atapi_kill_xfer(struct ata_channel *chp, struct ata_xfer *xfer, int reason)
sys/dev/scsipi/atapi_wdc.c
211
struct ata_xfer *xfer;
sys/dev/scsipi/atapi_wdc.c
374
struct ata_xfer *xfer;
sys/dev/scsipi/atapi_wdc.c
478
wdc_atapi_start(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/scsipi/atapi_wdc.c
700
wdc_atapi_poll(struct ata_channel *chp, struct ata_xfer *xfer)
sys/dev/scsipi/atapi_wdc.c
732
wdc_atapi_intr(struct ata_channel *chp, struct ata_xfer *xfer, int irq)
sys/dev/scsipi/atapi_wdc.c
88
static int wdc_atapi_start(struct ata_channel *,struct ata_xfer *);
sys/dev/scsipi/atapi_wdc.c
89
static int wdc_atapi_intr(struct ata_channel *, struct ata_xfer *, int);
sys/dev/scsipi/atapi_wdc.c
91
struct ata_xfer *, int);
sys/dev/scsipi/atapi_wdc.c
92
static void wdc_atapi_phase_complete(struct ata_xfer *, int);
sys/dev/scsipi/atapi_wdc.c
93
static int wdc_atapi_poll(struct ata_channel *, struct ata_xfer *);
sys/dev/scsipi/atapi_wdc.c
94
static void wdc_atapi_done(struct ata_channel *, struct ata_xfer *);
sys/dev/scsipi/atapi_wdc.c
95
static void wdc_atapi_reset(struct ata_channel *, struct ata_xfer *);