Searched refs:LBA_t (Results 1 – 4 of 4) sorted by relevance
/third_party/FatFs/source/ |
D | diskio.h | 40 DRESULT disk_read (BYTE pdrv, BYTE* buff, LBA_t sector, UINT count); 41 DRESULT disk_write (BYTE pdrv, const BYTE* buff, LBA_t sector, UINT count); 43 DRESULT disk_read_readdir (BYTE pdrv, BYTE* buff, LBA_t sector, UINT count); 44 DRESULT disk_raw_read (int id, void* buff, LBA_t sector, UINT32 count); 45 DRESULT disk_raw_write (int id, void* buff, LBA_t sector, UINT32 count); 49 DRESULT disk_read_readdir (BYTE pdrv, BYTE* buff, LBA_t sector, UINT count);
|
D | diskio.c | 84 LBA_t sector, /* Start sector in LBA */ in disk_read() 106 LBA_t sector, /* Start sector in LBA */ in disk_read_readdir() 123 DRESULT disk_raw_read (int id, void *buff, LBA_t sector, UINT32 count) in disk_raw_read() 147 LBA_t sector, /* Start sector in LBA */ in disk_write()
|
D | ff.h | 175 typedef QWORD LBA_t; typedef 243 LBA_t volbase; /* Volume base sector */ 244 LBA_t fatbase; /* FAT base sector */ 245 LBA_t dirbase; /* Root directory base sector/cluster */ 246 LBA_t database; /* Data base sector */ 247 LBA_t winsect; /* Current sector appearing in the win[] */ 295 LBA_t sect; /* Sector number appearing in buf[] (0:invalid) */ 297 LBA_t dir_sect; /* Sector number containing the directory entry */ 319 LBA_t sect; /* Current sector (0:Read operation has terminated) */
|
D | ff.c | 922 LBA_t sect /* Sector LBA to make appearance in the fs->win[] */ in move_window() 938 sect = (LBA_t)0 - 1; /* Invalidate window if read data is not valid */ in move_window() 950 LBA_t sect /* Sector number to make appearance in the fs->win[] */ in move_window_readdir() 1021 LBA_t clst2sect ( /* !=0:Sector number, 0:Failed (invalid cluster#) */ in clst2sect() 1028 return fs->database + (LBA_t)fs->csize * clst; /* Start sector number of the cluster */ in clst2sect() 1162 LBA_t rt[2]; in remove_chain() 1400 LBA_t sect; in dir_clear() 2677 LBA_t sect /* Sector to load and check if it is an FAT-VBR or not */ in check_fs() 2684 fs->wflag = 0; fs->winsect = (LBA_t)0 - 1; /* Invaidate window */ in check_fs() 2720 LBA_t bsect; in find_volume() [all …]
|