Home
last modified time | relevance | path

Searched refs:sector_memory (Results 1 – 3 of 3) sorted by relevance

/USBX-v6.2.1/common/usbx_host_classes/src/
Dux_host_class_storage_media_mount.c104 UCHAR *sector_memory; in _ux_host_class_storage_media_mount()
127sector_memory = _ux_utility_memory_allocate(UX_SAFE_ALIGN, UX_CACHE_SAFE_MEMORY, storage -> ux_ho… in _ux_host_class_storage_media_mount()
128 if (sector_memory == UX_NULL) in _ux_host_class_storage_media_mount()
138 status = _ux_host_class_storage_media_read(storage, sector, 1, sector_memory); in _ux_host_class_storage_media_mount()
145 _ux_utility_memory_free(sector_memory); in _ux_host_class_storage_media_mount()
160 if (_ux_utility_short_get(sector_memory + 510) == UX_HOST_CLASS_STORAGE_PARTITION_SIGNATURE) in _ux_host_class_storage_media_mount()
172 if ((*sector_memory == 0xe9) || ((*sector_memory == 0xeb) && *(sector_memory + 2) == 0x90)) in _ux_host_class_storage_media_mount()
176 if (_ux_utility_short_get(sector_memory + 0x16) != 0x0 || in _ux_host_class_storage_media_mount()
177 _ux_utility_long_get(sector_memory + 0x24) != 0x0 || in _ux_host_class_storage_media_mount()
178 (*(sector_memory + 1) == 0x76) /* exFAT volume */) in _ux_host_class_storage_media_mount()
[all …]
Dux_host_class_storage_partition_read.c83 UINT _ux_host_class_storage_partition_read(UX_HOST_CLASS_STORAGE *storage, UCHAR *sector_memory, U… in _ux_host_class_storage_partition_read() argument
87 UX_PARAMETER_NOT_USED(sector_memory); in _ux_host_class_storage_partition_read()
96 sector_memory += UX_HOST_CLASS_STORAGE_PARTITION_TABLE_START; in _ux_host_class_storage_partition_read()
103 switch(*(sector_memory + UX_HOST_CLASS_STORAGE_PARTITION_TYPE)) in _ux_host_class_storage_partition_read()
115 …_host_class_storage_media_open(storage, sector + _ux_utility_long_get(sector_memory + UX_HOST_CLAS… in _ux_host_class_storage_partition_read()
123 …host_class_storage_media_mount(storage, sector + _ux_utility_long_get(sector_memory + UX_HOST_CLAS… in _ux_host_class_storage_partition_read()
134 sector_memory += UX_HOST_CLASS_STORAGE_PARTITION_TABLE_SIZE; in _ux_host_class_storage_partition_read()
/USBX-v6.2.1/common/usbx_host_classes/inc/
Dux_host_class_storage.h639 UINT _ux_host_class_storage_partition_read(UX_HOST_CLASS_STORAGE *storage, UCHAR *sector_memory,…