Searched refs:FIL (Results 1 – 3 of 3) sorted by relevance
/reactos/sdk/tools/fatten/fatfs/ |
H A D | ff.h | 137 } FIL; typedef 212 FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */ 213 FRESULT f_close (FIL* fp); /* Close an open file object */ 214 FRESULT f_read (FIL* fp, void* buff, UINT btr, UINT* br); /* Read data from a file */ 215 FRESULT f_write (FIL* fp, const void* buff, UINT btw, UINT* bw); /* Write data to a file */ 217 FRESULT f_lseek (FIL* fp, DWORD ofs); /* Move file pointer of a file object */ 218 FRESULT f_truncate (FIL* fp); /* Truncate file */ 219 FRESULT f_sync (FIL* fp); /* Flush cached data of a writing file */ 240 int f_putc (TCHAR c, FIL* fp); /* Put a character to the file */ 241 int f_puts (const TCHAR* str, FIL* cp); /* Put a string to the file */ [all …]
|
H A D | ff.c | 1053 FIL* fp, /* Pointer to the file object */ in clmt_clust() 2376 FIL *fil = (FIL*)obj; /* Assuming offset of .fs and .id in the FIL/DIR structure is identical */ in validate() 2587 FIL* fp, /* Pointer to the file object */ in f_read() 2688 FIL* fp, /* Pointer to the file object */ in f_write() 2810 FIL* fp /* Pointer to the file object */ in f_sync() 3030 FIL* fp, /* Pointer to the file object */ in f_lseek() 3471 FIL* fp /* Pointer to the file object */ in f_truncate() 4404 FIL* fp /* Pointer to the file object */ in f_gets() 4481 FIL* fp; 4545 FIL* fp /* Pointer to the file object */ in f_putc() [all …]
|
/reactos/sdk/tools/fatten/ |
H A D | fatten.c | 356 FIL fv = { 0 }; in main() 398 FIL fe = { 0 }; in main() 456 FIL fe = { 0 }; in main() 457 FIL fv = { 0 }; in main()
|