wqt 98 dev/ic/isp_openbsd.c isp->isp_osinfo.wqf = isp->isp_osinfo.wqt = NULL;
wqt 282 dev/ic/isp_openbsd.c isp->isp_osinfo.wqt->free_list.le_next = xs;
wqt 286 dev/ic/isp_openbsd.c isp->isp_osinfo.wqt = xs;
wqt 97 dev/ic/isp_openbsd.h struct scsi_xfer *wqf, *wqt;
wqt 126 kern/kern_workq.c struct workq_task *wqt;
wqt 134 kern/kern_workq.c wqt = pool_get(&workq_task_pool, (flags & WQ_WAITOK) ?
wqt 137 kern/kern_workq.c if (!wqt)
wqt 140 kern/kern_workq.c wqt->wqt_flags = flags;
wqt 141 kern/kern_workq.c wqt->wqt_func = func;
wqt 142 kern/kern_workq.c wqt->wqt_arg1 = a1;
wqt 143 kern/kern_workq.c wqt->wqt_arg2 = a2;
wqt 146 kern/kern_workq.c SIMPLEQ_INSERT_TAIL(&wq->wq_tasklist, wqt, wqt_entry);
wqt 178 kern/kern_workq.c struct workq_task *wqt;
wqt 183 kern/kern_workq.c while ((wqt = SIMPLEQ_FIRST(&wq->wq_tasklist)) != NULL) {
wqt 188 kern/kern_workq.c if (wqt->wqt_flags & WQ_MPSAFE)
wqt 190 kern/kern_workq.c wqt->wqt_func(wqt->wqt_arg1, wqt->wqt_arg2);
wqt 191 kern/kern_workq.c if (wqt->wqt_flags & WQ_MPSAFE)
wqt 196 kern/kern_workq.c pool_put(&workq_task_pool, wqt);