Lines Matching defs:req

74 		    usb_isoc_req_t *req, size_t length,
1533 usb_intr_req_t *req,
1545 "uhci_insert_intr_td: req: 0x%p", (void *)req);
1553 if (req) {
1554 length = req->intr_len;
1595 tw->tw_curr_xfer_reqp = (usb_opaque_t)req;
1641 if (req->intr_len) {
1643 ASSERT(req->intr_data != NULL);
1646 ddi_rep_put8(tw->tw_accesshandle, req->intr_data->b_rptr,
1647 (uint8_t *)tw->tw_buf, req->intr_len, DDI_DEV_AUTOINCR);
2208 usb_ctrl_req_t *req = (usb_ctrl_req_t *)tw->tw_curr_xfer_reqp;
2212 req->ctrl_bmRequestType, req->ctrl_bRequest, req->ctrl_wValue,
2213 req->ctrl_wIndex, req->ctrl_wLength, (void *)req->ctrl_data);
2219 sdata = (req->ctrl_bmRequestType | (req->ctrl_bRequest << 8) |
2220 (req->ctrl_wValue << 16));
2224 sdata = (uint32_t)(req->ctrl_wIndex | (req->ctrl_wLength << 16));
2234 pp, tw, PID_SETUP, req->ctrl_attributes)) != USB_SUCCESS) {
2241 req->ctrl_attributes);
2248 if (req->ctrl_wLength != 0) {
2250 if (req->ctrl_bmRequestType & USB_DEV_REQ_DEV_TO_HOST) {
2257 req->ctrl_data->b_rptr,
2259 req->ctrl_wLength,
2784 usb_bulk_req_t *req,
2799 "uhci_insert_bulk_td: req: 0x%p, flags = 0x%x", (void *)req, flags);
2806 if ((tw = uhci_create_transfer_wrapper(uhcip, pp, req->bulk_len,
2815 tw->tw_bytes_pending = req->bulk_len;
2817 tw->tw_handle_callback_value = (usb_opaque_t)req->bulk_data;
2818 tw->tw_timeout_cnt = req->bulk_timeout;
2819 tw->tw_data = req->bulk_data;
2820 tw->tw_curr_xfer_reqp = (usb_opaque_t)req;
2831 if (req->bulk_len) {
2832 ASSERT(req->bulk_data != NULL);
2836 req->bulk_data->b_rptr,
2838 req->bulk_len, DDI_DEV_AUTOINCR);
3770 usb_isoc_req_t *req,
3782 usb_isoc_req_t *tmp_req = req;
3791 if ((req == NULL) && (UHCI_XFER_DIR(&pp->pp_pipe_handle->p_ep) ==
3997 "uhci_insert_isoc_td: ph = 0x%p isoc req = %p length = %lu",
4302 "uhci_handle_isoc_td: td = 0x%p, pp = 0x%p, tw = 0x%p, req = 0x%p, "
4497 "Max isoc request size = %lx, Given isoc req size = %lx",