Searched refs:FIL (Results 1 – 8 of 8) sorted by relevance
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/fs/fat/ChaN/ |
A D | ff.h | 136 } FIL; typedef 206 FRESULT f_open (FIL*, const TCHAR*, BYTE); /* Open or create a file */ 207 FRESULT f_read (FIL*, void*, UINT, UINT*); /* Read data from a file */ 208 FRESULT f_lseek (FIL*, DWORD); /* Move file pointer of a file object */ 209 FRESULT f_close (FIL*); /* Close an open file object */ 213 FRESULT f_write (FIL*, const void*, UINT, UINT*); /* Write data to a file */ 215 FRESULT f_truncate (FIL*); /* Truncate file */ 228 int f_putc (TCHAR, FIL*); /* Put a character to the file */ 229 int f_puts (const TCHAR*, FIL*); /* Put a string to the file */ 230 int f_printf (FIL*, const TCHAR*, ...); /* Put a formatted string to the file */ [all …]
|
/AliOS-Things-master/components/fatfs/include/ |
A D | ff.h | 173 } FIL; typedef 243 FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */ 244 FRESULT f_close (FIL* fp); /* Close an open file object */ 245 FRESULT f_read (FIL* fp, void* buff, UINT btr, UINT* br); /* Read data from the file */ 247 FRESULT f_lseek (FIL* fp, FSIZE_t ofs); /* Move file pointer of the file object */ 248 FRESULT f_truncate (FIL* fp); /* Truncate the file */ 249 FRESULT f_sync (FIL* fp); /* Flush cached data of the writing file */ 273 int f_putc (TCHAR c, FIL* fp); /* Put a character to the file */ 274 int f_puts (const TCHAR* str, FIL* cp); /* Put a string to the file */ 275 int f_printf (FIL* fp, const TCHAR* str, ...); /* Put a formatted string to the file */ [all …]
|
/AliOS-Things-master/components/py_engine/engine/lib/oofatfs/ |
A D | ff.h | 212 } FIL; typedef 282 FRESULT f_open (FATFS *fs, FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */ 283 FRESULT f_close (FIL* fp); /* Close an open file object */ 284 FRESULT f_read (FIL* fp, void* buff, UINT btr, UINT* br); /* Read data from the file */ 285 FRESULT f_write (FIL* fp, const void* buff, UINT btw, UINT* bw); /* Write data to the file */ 286 FRESULT f_lseek (FIL* fp, FSIZE_t ofs); /* Move file pointer of the fil… 287 FRESULT f_truncate (FIL* fp); /* Truncate the file */ 288 FRESULT f_sync (FIL* fp); /* Flush cached data of the wri… 305 FRESULT f_forward (FIL* fp, UINT(*func)(const BYTE*,UINT), UINT btf, UINT* bf); /* Forward data to … 306 FRESULT f_expand (FIL* fp, FSIZE_t szf, BYTE opt); /* Allocate a contiguous block …
|
A D | ff.c | 1585 FIL* fp, /* Pointer to the file object */ in clmt_clust() 3421 FIL* fp, /* Pointer to the blank file object */ 3610 FIL* fp, /* Pointer to the file object */ 3710 FIL* fp, /* Pointer to the file object */ 3831 FIL* fp /* Pointer to the file object */ 3912 FIL* fp /* Pointer to the file object to be closed */ 4110 FIL* fp, /* Pointer to the file object */ 4578 FIL* fp /* Pointer to the file object */ 5223 FIL* fp, /* Pointer to the file object */ 5313 FIL* fp, /* Pointer to the file object */
|
/AliOS-Things-master/components/fatfs/src/ |
A D | fatfs_vfs.c | 134 FIL *f = NULL; in fatfs_vfs_open() 137 f = (FIL *)aos_malloc(sizeof(FIL)); in fatfs_vfs_open() 164 FIL *f = (FIL *)(fp->f_arg); in fatfs_vfs_close() 182 FIL *f = (FIL *)(fp->f_arg); in fatfs_vfs_read() 198 FIL *f = (FIL *)(fp->f_arg); in fatfs_vfs_write() 243 FIL *f = (FIL *)(fp->f_arg); in fatfs_vfs_lseek() 272 FIL *f = (FIL *)(fp->f_arg); in fatfs_vfs_sync()
|
A D | ff.c | 1451 FIL* fp, /* Pointer to the file object */ in clmt_clust() 3557 FIL* fp, /* Pointer to the file object */ 3657 FIL* fp, /* Pointer to the file object */ 3778 FIL* fp /* Pointer to the file object */ 4046 FIL* fp, /* Pointer to the file object */ 4517 FIL* fp /* Pointer to the file object */ 5173 FIL* fp, /* Pointer to the file object */ 5865 FIL* fp /* Pointer to the file object */ 5942 FIL *fp; /* Ptr to the writing file */ 6021 FIL* fp [all …]
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/fs/fat/ |
A D | FATFileHandle.h | 32 FATFileHandle(FIL fh); 43 FIL _fh;
|
/AliOS-Things-master/components/py_engine/engine/extmod/ |
A D | vfs_fat_file.c | 64 FIL fp;
|
Completed in 32 milliseconds