Lines Matching refs:pipe_hdl
69 hcd_pipe_handle_t pipe_hdl; member
336 static bool pipe_callback(hcd_pipe_handle_t pipe_hdl, hcd_pipe_event_t pipe_event, void *user_arg, … in pipe_callback() argument
586 ESP_ERROR_CHECK(hcd_pipe_command(ep_obj->constant.pipe_hdl, HCD_PIPE_CMD_FLUSH)); in _handle_pending_ep()
591 urb_t *urb = hcd_urb_dequeue(ep_obj->constant.pipe_hdl); in _handle_pending_ep()
595 urb = hcd_urb_dequeue(ep_obj->constant.pipe_hdl); in _handle_pending_ep()
931 hcd_pipe_handle_t pipe_hdl; in endpoint_alloc() local
932 ret = usbh_ep_alloc(dev_hdl, &ep_config, &pipe_hdl); in endpoint_alloc()
937 ep_obj->constant.pipe_hdl = pipe_hdl; in endpoint_alloc()
1171 ret = hcd_pipe_command(ep_obj->constant.pipe_hdl, HCD_PIPE_CMD_HALT); in usb_host_endpoint_halt()
1185 ret = hcd_pipe_command(ep_obj->constant.pipe_hdl, HCD_PIPE_CMD_FLUSH); in usb_host_endpoint_flush()
1199 ret = hcd_pipe_command(ep_obj->constant.pipe_hdl, HCD_PIPE_CMD_CLEAR); in usb_host_endpoint_clear()
1304 if (hcd_pipe_get_state(ep_obj->constant.pipe_hdl) != HCD_PIPE_STATE_ACTIVE) { in usb_host_transfer_submit()
1308 ret = hcd_urb_enqueue(ep_obj->constant.pipe_hdl, urb_obj); in usb_host_transfer_submit()