Home | History | Annotate | Download | only in dev

Lines Matching defs:tt

158 	struct ld_thunkbus_transfer *tt = &sc->sc_tt;
163 tt->tt_sc = sc;
164 tt->tt_bp = bp;
166 memset(&tt->tt_aio, 0, sizeof(tt->tt_aio));
167 tt->tt_aio.aio_fildes = sc->sc_fd;
168 tt->tt_aio.aio_buf = bp->b_data;
169 tt->tt_aio.aio_nbytes = bp->b_bcount;
170 tt->tt_aio.aio_offset = offset;
172 tt->tt_aio.aio_sigevent.sigev_notify = SIGEV_SIGNAL;
173 tt->tt_aio.aio_sigevent.sigev_signo = SIGIO;
174 tt->tt_aio.aio_sigevent.sigev_value.sival_ptr = tt;
192 error = thunk_aio_read(&tt->tt_aio);
194 error = thunk_aio_write(&tt->tt_aio);
204 struct ld_thunkbus_transfer *tt = &sc->sc_tt;
205 struct buf *bp = tt->tt_bp;
216 error = thunk_aio_error(&tt->tt_aio);
222 thunk_aio_return(&tt->tt_aio) != -1) {
245 struct ld_thunkbus_transfer *tt = &sc->sc_tt;
247 tt->tt_sc = sc;
248 tt->tt_bp = bp;
262 struct ld_thunkbus_transfer *tt = &sc->sc_tt;
263 struct buf *bp = tt->tt_bp;