Lines Matching defs:pipe_hdl
1817 esp_err_t hcd_pipe_alloc(hcd_port_handle_t port_hdl, const hcd_pipe_config_t *pipe_config, hcd_pipe_handle_t *pipe_hdl)
1819 HCD_CHECK(port_hdl != NULL && pipe_config != NULL && pipe_hdl != NULL, ESP_ERR_INVALID_ARG);
1896 *pipe_hdl = (hcd_pipe_handle_t)pipe;
1908 esp_err_t hcd_pipe_free(hcd_pipe_handle_t pipe_hdl)
1910 pipe_t *pipe = (pipe_t *)pipe_hdl;
1932 esp_err_t hcd_pipe_update_mps(hcd_pipe_handle_t pipe_hdl, int mps)
1934 pipe_t *pipe = (pipe_t *)pipe_hdl;
1948 esp_err_t hcd_pipe_update_dev_addr(hcd_pipe_handle_t pipe_hdl, uint8_t dev_addr)
1950 pipe_t *pipe = (pipe_t *)pipe_hdl;
1964 esp_err_t hcd_pipe_update_callback(hcd_pipe_handle_t pipe_hdl, hcd_pipe_callback_t callback, void *user_arg)
1966 pipe_t *pipe = (pipe_t *)pipe_hdl;
1979 esp_err_t hcd_pipe_set_persist_reset(hcd_pipe_handle_t pipe_hdl)
1981 pipe_t *pipe = (pipe_t *)pipe_hdl;
1993 void *hcd_pipe_get_context(hcd_pipe_handle_t pipe_hdl)
1995 pipe_t *pipe = (pipe_t *)pipe_hdl;
2003 hcd_pipe_state_t hcd_pipe_get_state(hcd_pipe_handle_t pipe_hdl)
2006 pipe_t *pipe = (pipe_t *)pipe_hdl;
2013 esp_err_t hcd_pipe_command(hcd_pipe_handle_t pipe_hdl, hcd_pipe_cmd_t command)
2015 pipe_t *pipe = (pipe_t *)pipe_hdl;
2044 hcd_pipe_event_t hcd_pipe_get_event(hcd_pipe_handle_t pipe_hdl)
2046 pipe_t *pipe = (pipe_t *)pipe_hdl;
2540 esp_err_t hcd_urb_enqueue(hcd_pipe_handle_t pipe_hdl, urb_t *urb)
2544 pipe_t *pipe = (pipe_t *)pipe_hdl;
2578 urb_t *hcd_urb_dequeue(hcd_pipe_handle_t pipe_hdl)
2580 pipe_t *pipe = (pipe_t *)pipe_hdl;