Lines Matching refs:port_hdl
1303 esp_err_t hcd_port_init(int port_number, const hcd_port_config_t *port_config, hcd_port_handle_t *port_hdl)
1305 HCD_CHECK(port_number > 0 && port_config != NULL && port_hdl != NULL, ESP_ERR_INVALID_ARG);
1349 *port_hdl = (hcd_port_handle_t)port_obj;
1356 esp_err_t hcd_port_deinit(hcd_port_handle_t port_hdl)
1358 port_t *port = (port_t *)port_hdl;
1374 esp_err_t hcd_port_command(hcd_port_handle_t port_hdl, hcd_port_cmd_t command)
1377 port_t *port = (port_t *)port_hdl;
1415 hcd_port_state_t hcd_port_get_state(hcd_port_handle_t port_hdl)
1417 port_t *port = (port_t *)port_hdl;
1425 esp_err_t hcd_port_get_speed(hcd_port_handle_t port_hdl, usb_speed_t *speed)
1427 port_t *port = (port_t *)port_hdl;
1442 hcd_port_event_t hcd_port_handle_event(hcd_port_handle_t port_hdl)
1444 port_t *port = (port_t *)port_hdl;
1477 esp_err_t hcd_port_recover(hcd_port_handle_t port_hdl)
1479 port_t *port = (port_t *)port_hdl;
1500 void *hcd_port_get_context(hcd_port_handle_t port_hdl)
1502 port_t *port = (port_t *)port_hdl;
1510 esp_err_t hcd_port_set_fifo_bias(hcd_port_handle_t port_hdl, hcd_port_fifo_bias_t bias)
1536 port_t *port = (port_t *)port_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);
1820 port_t *port = (port_t *)port_hdl;