Searched refs:FIL (Results 1 – 4 of 4) sorted by relevance
/hal_espressif-3.4.0/components/fatfs/src/ |
D | ff.h | 213 } FIL; typedef 283 FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */ 284 FRESULT f_close (FIL* fp); /* Close an open file object */ 285 FRESULT f_read (FIL* fp, void* buff, UINT btr, UINT* br); /* Read data from the file */ 286 FRESULT f_write (FIL* fp, const void* buff, UINT btw, UINT* bw); /* Write data to the file */ 287 FRESULT f_lseek (FIL* fp, FSIZE_t ofs); /* Move file pointer of the file object */ 288 FRESULT f_truncate (FIL* fp); /* Truncate the file */ 289 FRESULT f_sync (FIL* fp); /* Flush cached data of the writing file */ 307 FRESULT f_forward (FIL* fp, UINT(*func)(const BYTE*,UINT), UINT btf, UINT* bf); /* Forward data to … 308 FRESULT f_expand (FIL* fp, FSIZE_t fsz, BYTE opt); /* Allocate a contiguous block to the file */ [all …]
|
D | ff.c | 1615 FIL* fp, /* Pointer to the file object */ in clmt_clust() 3548 FIL* fp, /* Pointer to the blank file object */ 3738 FIL* fp, /* Pointer to the file object */ 3838 FIL* fp, /* Pointer to the file object */ 3959 FIL* fp /* Pointer to the file object */ 4040 FIL* fp /* Pointer to the file object to be closed */ 4255 FIL* fp, /* Pointer to the file object */ 4724 FIL* fp /* Pointer to the file object */ 5371 FIL* fp, /* Pointer to the file object */ 5461 FIL* fp, /* Pointer to the file object */ [all …]
|
/hal_espressif-3.4.0/components/fatfs/vfs/ |
D | vfs_fat.c | 36 FIL files[0]; /* array with max_files entries; must be the final member of the structure */ 160 size_t ctx_size = sizeof(vfs_fat_ctx_t) + max_files * sizeof(FIL); in esp_vfs_fat_register() 275 memset(&ctx->files[fd], 0, sizeof(FIL)); in file_cleanup() 321 FIL* file = &fat_ctx->files[fd]; in vfs_fat_open() 367 FIL* file = &fat_ctx->files[fd]; in vfs_fat_write() 391 FIL* file = &fat_ctx->files[fd]; in vfs_fat_read() 409 FIL *file = &fat_ctx->files[fd]; in vfs_fat_pread() 449 FIL *file = &fat_ctx->files[fd]; in vfs_fat_pwrite() 488 FIL* file = &fat_ctx->files[fd]; in vfs_fat_fsync() 504 FIL* file = &fat_ctx->files[fd]; in vfs_fat_close() [all …]
|
/hal_espressif-3.4.0/components/fatfs/test_fatfs_host/ |
D | test_fatfs.cpp | 21 FIL file;
|