Lines Matching refs:pipe_hdl
215 static bool default_pipe_callback(hcd_pipe_handle_t pipe_hdl, hcd_pipe_event_t pipe_event, void *us… in default_pipe_callback() argument
762 hcd_pipe_handle_t pipe_hdl; in usbh_ep_alloc() local
763 ret = hcd_pipe_alloc(dev_obj->constant.port_hdl, &pipe_config, &pipe_hdl); in usbh_ep_alloc()
784 dev_obj->mux_protected.ep_in[addr - 1] = pipe_hdl; in usbh_ep_alloc()
787 dev_obj->mux_protected.ep_out[addr - 1] = pipe_hdl; in usbh_ep_alloc()
797 *pipe_hdl_ret = pipe_hdl; in usbh_ep_alloc()
802 ESP_ERROR_CHECK(hcd_pipe_free(pipe_hdl)); in usbh_ep_alloc()
815 hcd_pipe_handle_t pipe_hdl; in usbh_ep_free() local
822 pipe_hdl = dev_obj->mux_protected.ep_in[addr - 1]; in usbh_ep_free()
831 pipe_hdl = dev_obj->mux_protected.ep_out[addr - 1]; in usbh_ep_free()
841 ESP_ERROR_CHECK(hcd_pipe_free(pipe_hdl)); in usbh_ep_free()
858 hcd_pipe_handle_t pipe_hdl; in usbh_ep_get_context() local
864 pipe_hdl = dev_obj->mux_protected.ep_in[addr - 1]; in usbh_ep_get_context()
866 pipe_hdl = dev_obj->mux_protected.ep_out[addr - 1]; in usbh_ep_get_context()
869 if (pipe_hdl == NULL) { in usbh_ep_get_context()
874 void *context = hcd_pipe_get_context(pipe_hdl); in usbh_ep_get_context()