Searched refs:disk_ioctl (Results 1 – 4 of 4) sorted by relevance
/hal_espressif-3.6.0/components/fatfs/src/ |
D | diskio.h | 33 DRESULT disk_ioctl (BYTE pdrv, BYTE cmd, void* buff);
|
D | ffconf.h | 325 #define disk_ioctl ff_disk_ioctl macro
|
D | diskio.c | 198 DRESULT disk_ioctl ( in disk_ioctl() function
|
D | ff.c | 1118 if (disk_ioctl(fs->pdrv, CTRL_SYNC, 0) != RES_OK) res = FR_DISK_ERR; in sync_fs() 1467 …disk_ioctl(fs->pdrv, CTRL_TRIM, rt); /* Inform device the data in the block is no longer needed */ in remove_chain() 3266 if (disk_ioctl(fs->pdrv, GET_SECTOR_SIZE, &SS(fs)) != RES_OK) return FR_DISK_ERR; 5567 …if (disk_ioctl(pdrv, GET_BLOCK_SIZE, &sz_blk) != RES_OK || !sz_blk || sz_blk > 32768 || (sz_blk & … 5569 if (disk_ioctl(pdrv, GET_SECTOR_SIZE, &ss) != RES_OK) return FR_DISK_ERR; 5604 if (disk_ioctl(pdrv, GET_SECTOR_COUNT, &sz_vol) != RES_OK) LEAVE_MKFS(FR_DISK_ERR); 5638 disk_ioctl(pdrv, CTRL_TRIM, tbl); 5865 disk_ioctl(pdrv, CTRL_TRIM, tbl); 5986 if (disk_ioctl(pdrv, CTRL_SYNC, 0) != RES_OK) LEAVE_MKFS(FR_DISK_ERR); 6018 if (disk_ioctl(pdrv, GET_SECTOR_COUNT, &sz_disk)) return FR_DISK_ERR; [all …]
|