Searched refs:data_buffer_size (Results 1 – 9 of 9) sorted by relevance
/hal_espressif-3.6.0/components/usb/ |
D | usb_private.c | 11 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()
|
D | usb_host.c | 1215 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/ |
D | usb_private.h | 24 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/ |
D | test_hcd_common.h | 112 urb_t *test_hcd_alloc_urb(int num_isoc_packets, size_t data_buffer_size);
|
D | test_hcd_common.c | 255 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/ |
D | usb_types_stack.h | 127 const size_t data_buffer_size; /**< Size of the data buffer in bytes */ member
|
D | usb_host.h | 437 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/ |
D | cdc_acm_host.c | 1029 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/ |
D | msc_host.c | 516 MSC_RETURN_ON_FALSE(size <= xfer->data_buffer_size, ESP_ERR_INVALID_SIZE); in msc_bulk_transfer()
|