Searched refs:buff (Results 1 – 4 of 4) sorted by relevance
/fatfs-latest/ |
D | diskio.c | 101 BYTE *buff, /* Data buffer to store read data */ in disk_read() argument 113 result = RAM_disk_read(buff, sector, count); in disk_read() 122 result = MMC_disk_read(buff, sector, count); in disk_read() 131 result = USB_disk_read(buff, sector, count); in disk_read() 151 const BYTE *buff, /* Data to be written */ in disk_write() argument 163 result = RAM_disk_write(buff, sector, count); in disk_write() 172 result = MMC_disk_write(buff, sector, count); in disk_write() 181 result = USB_disk_write(buff, sector, count); in disk_write() 201 void *buff /* Buffer to send/receive control data */ in disk_ioctl() argument
|
D | ff.c | 3281 BYTE *buff, /* Output buffer */ argument 3291 *buff++ = (BYTE)seed; 3931 void* buff, /* Data buffer to store the read data */ argument 3942 BYTE *rbuff = (BYTE*)buff; 4031 const void* buff, /* Data to be written */ argument 4041 const BYTE *wbuff = (const BYTE*)buff; 4347 TCHAR* buff, /* Pointer to the directory path */ argument 4356 TCHAR *tp = buff; 4368 buff[0] = 0; /* Set null string to get current volume */ local 4369 res = mount_volume((const TCHAR**)&buff, &fs, 0); /* Get current volume */ [all …]
|
/fatfs-latest/include/ |
D | diskio.h | 31 DRESULT disk_read (BYTE pdrv, BYTE* buff, LBA_t sector, UINT count); 32 DRESULT disk_write (BYTE pdrv, const BYTE* buff, LBA_t sector, UINT count); 33 DRESULT disk_ioctl (BYTE pdrv, BYTE cmd, void* buff);
|
D | ff.h | 307 FRESULT f_read (FIL* fp, void* buff, UINT btr, UINT* br); /* Read data from the file */ 308 FRESULT f_write (FIL* fp, const void* buff, UINT btw, UINT* bw); /* Write data to the file */ 325 FRESULT f_getcwd (TCHAR* buff, UINT len); /* Get current directory */ 338 TCHAR* f_gets (TCHAR* buff, int len, FIL* fp); /* Get a string from the file */
|