Home
last modified time | relevance | path

Searched refs:data_buffer_size (Results 1 – 9 of 9) sorted by relevance

/hal_espressif-3.6.0/components/usb/
Dusb_private.c11 urb_t *urb_alloc(size_t data_buffer_size, size_t header_size, int num_isoc_packets) in urb_alloc() argument
14 uint8_t *data_buffer = heap_caps_malloc(data_buffer_size + header_size, MALLOC_CAP_DMA); in urb_alloc()
22 dummy_transfer->data_buffer_size = data_buffer_size; in urb_alloc()
Dusb_host.c1215 if (transfer->num_bytes > transfer->data_buffer_size) { in transfer_check()
1262 esp_err_t usb_host_transfer_alloc(size_t data_buffer_size, int num_isoc_packets, usb_transfer_t **t… in usb_host_transfer_alloc() argument
1264 urb_t *urb = urb_alloc(data_buffer_size, 0, num_isoc_packets); in usb_host_transfer_alloc()
/hal_espressif-3.6.0/components/usb/private_include/
Dusb_private.h24 size_t data_buffer_size; member
74 urb_t *urb_alloc(size_t data_buffer_size, size_t header_size, int num_isoc_packets);
/hal_espressif-3.6.0/components/usb/test/hcd/
Dtest_hcd_common.h112 urb_t *test_hcd_alloc_urb(int num_isoc_packets, size_t data_buffer_size);
Dtest_hcd_common.c255 urb_t *test_hcd_alloc_urb(int num_isoc_packets, size_t data_buffer_size) in test_hcd_alloc_urb() argument
259 uint8_t *data_buffer = heap_caps_malloc(data_buffer_size, MALLOC_CAP_DMA); in test_hcd_alloc_urb()
/hal_espressif-3.6.0/components/usb/include/usb/
Dusb_types_stack.h127 const size_t data_buffer_size; /**< Size of the data buffer in bytes */ member
Dusb_host.h437 esp_err_t usb_host_transfer_alloc(size_t data_buffer_size, int num_isoc_packets, usb_transfer_t **t…
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/
Dcdc_acm_host.c1029 CDC_ACM_CHECK(data_len <= cdc_dev->data.out_xfer->data_buffer_size, ESP_ERR_INVALID_SIZE); in cdc_acm_host_data_tx_blocking()
1115 CDC_ACM_CHECK(cdc_dev->ctrl_transfer->data_buffer_size >= data_len, ESP_ERR_INVALID_SIZE); in send_cdc_request()
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/src/
Dmsc_host.c516 MSC_RETURN_ON_FALSE(size <= xfer->data_buffer_size, ESP_ERR_INVALID_SIZE); in msc_bulk_transfer()