Home
last modified time | relevance | path

Searched refs:UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE (Results 1 – 10 of 10) sorted by relevance

/USBX-v6.2.1/common/usbx_device_classes/src/
Dux_device_class_storage_read_format_capacity.c33 #if UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE < UX_SLAVE_CLASS_STORAGE_READ_FORMAT_CAPACITY_RESPONSE_LENGTH
34 #error UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE too small, please check
Dux_device_class_storage_read_dvd_structure.c266 if (allocation_length > UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE) in _ux_device_class_storage_read_dvd_structure()
269 transfer_length = UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE; in _ux_device_class_storage_read_dvd_structure()
Dux_device_class_storage_read_toc.c33 #if UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE < 20
34 #error UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE too small, please check
Dux_device_class_storage_request_sense.c33 #if UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE < UX_SLAVE_CLASS_STORAGE_REQUEST_SENSE_RESPONSE_LENGTH
34 #error UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE too small, please check
Dux_device_class_storage_mode_sense.c174 if (mode_sense_reply_length > UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE) in _ux_device_class_storage_mode_sense()
175 mode_sense_reply_length = UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE; in _ux_device_class_storage_mode_sense()
Dux_device_class_storage_write.c227 if (total_length > UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE) in _ux_device_class_storage_write()
228 transfer_length = UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE; in _ux_device_class_storage_write()
Dux_device_class_storage_read.c222 if (total_length > UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE) in _ux_device_class_storage_read()
225 transfer_length = UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE; in _ux_device_class_storage_read()
Dux_device_class_storage_initialize.c155 …eter_lun[lun_index].ux_slave_class_storage_media_block_length > UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE) in _ux_device_class_storage_initialize()
Dux_device_class_storage_tasks_run.c894 if (remaining > UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE) in _ux_device_class_storage_trans_start()
898 host_length = UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE; in _ux_device_class_storage_trans_start()
899 device_length = UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE; in _ux_device_class_storage_trans_start()
1071 max_n_blocks = UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE / block_size; in _ux_device_class_storage_disk_start()
/USBX-v6.2.1/common/usbx_device_classes/inc/
Dux_device_class_storage.h415 #define UX_SLAVE_CLASS_STORAGE_BUFFER_SIZE UX_SLAVE_REQUEST_DATA_MAX_L… macro