Searched refs:disk_read (Results 1 - 5 of 5) sorted by relevance
/third_party/FatFs/documents/res/ |
H A D | app4.c | 138 printf(" disk_read(%u, 0x%X, %lu, 1)", pdrv, (UINT)pbuff, lba);
in test_diskio() 139 dr = disk_read(pdrv, pbuff, lba, 1);
in test_diskio() 177 printf(" disk_read(%u, 0x%X, %lu, %u)", pdrv, (UINT)pbuff, lba, ns);
in test_diskio() 178 dr = disk_read(pdrv, pbuff, lba, ns);
in test_diskio() 217 printf(" disk_read(%u, 0x%X, %lu, 1)", pdrv, (UINT)(pbuff+5), lba);
in test_diskio() 218 dr = disk_read(pdrv, pbuff+5, lba, 1);
in test_diskio() 263 printf(" disk_read(%u, 0x%X, %lu, 1)", pdrv, (UINT)pbuff, lba);
in test_diskio() 264 dr = disk_read(pdrv, pbuff, lba, 1);
in test_diskio() 271 printf(" disk_read(%u, 0x%X, %lu, 1)", pdrv, (UINT)(pbuff+sz_sect), lba2);
in test_diskio() 272 dr = disk_read(pdr in test_diskio() [all...] |
H A D | app6.c | 50 if (disk_read(pdrv, buff, lba + ofs, sz_buff / ss) != RES_OK) {
in test_raw_speed()
|
/third_party/FatFs/source/ |
H A D | diskio.c | 81 DRESULT disk_read (
in disk_read() function 98 return (DRESULT)g_diskDrv.drv[pdrv]->disk_read(g_diskDrv.lun[pdrv], buff, sector, count);
in disk_read()
|
H A D | diskio.h | 40 DRESULT disk_read (BYTE pdrv, BYTE* buff, LBA_t sector, UINT count);
|
H A D | ff.c | 939 if (disk_read(fs->pdrv, fs->win, sect, 1) != RES_OK) { in move_window() 2767 if (disk_read(LD2PD(vol), fs->win, bsect + offset, 1) != RES_OK) return FR_DISK_ERR; in find_volume() 3479 if (disk_read(fs->pdrv, fp->buf, fp->sect, 1) != RES_OK) res = FR_DISK_ERR; in f_open() 3592 if (disk_read(fs->pdrv, rbuff, sect, cc) != RES_OK) ABORT(fs, FR_DISK_ERR); in f_read() 3625 if (disk_read(fs->pdrv, fp->buf, sect, 1) != RES_OK) ABORT(fs, FR_DISK_ERR); /* Fill sector cache */ in f_read() 3761 disk_read(fs->pdrv, fp->buf, sect, 1) != RES_OK) { in f_write() 4120 if (disk_read(fs->pdrv, fp->buf, dsc, 1) != RES_OK) ABORT(fs, FR_DISK_ERR); /* Load current sector */ in f_lseek() 4196 if (disk_read(fs->pdrv, fp->buf, nsect, 1) != RES_OK) ABORT(fs, FR_DISK_ERR); /* Fill sector cache */ in f_lseek() 5526 if (disk_read(fs->pdrv, fp->buf, sect, 1) != RES_OK) ABORT(fs, FR_DISK_ERR); 5685 if (disk_read(pdr [all...] |
Completed in 9 milliseconds