• Home
  • Raw
  • Download

Lines Matching refs:TCHAR

146 typedef WCHAR TCHAR;  typedef
150 typedef char TCHAR; typedef
154 typedef DWORD TCHAR; typedef
160 typedef char TCHAR; typedef
326 const TCHAR* pat; /* Pointer to the name matching pattern */
341 TCHAR altname[FF_SFN_BUF + 1];/* Altenative file name */
342 TCHAR fname[FF_LFN_BUF + 1]; /* Primary file name */
344 TCHAR fname[12 + 1]; /* File name */
427 FRESULT f_checkvirpart (FATFS* fs, const TCHAR* path, BYTE vol);
428 FRESULT f_makevirpart (FATFS* fs, const TCHAR* path, BYTE vol);
429 FRESULT f_getvirfree (const TCHAR* path, DWORD* nclst, DWORD* cclst);
430 FRESULT f_checkname (const TCHAR* path);
432 FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */
439 FRESULT f_opendir (DIR* dp, const TCHAR* path); /* Open a directory */
442 FRESULT f_findfirst (DIR* dp, FILINFO* fno, const TCHAR* path, const TCHAR* pattern); /* Find first…
444 FRESULT f_mkdir (const TCHAR* path); /* Create a sub directory */
445 FRESULT f_unlink (const TCHAR* path); /* Delete an existing file or directory */
446 FRESULT f_rename (const TCHAR* path_old, const TCHAR* path_new); /* Rename/Move a file or directory…
447 FRESULT f_stat (const TCHAR* path, FILINFO* fno); /* Get file status */
448 FRESULT f_chmod (const TCHAR* path, BYTE attr, BYTE mask); /* Change attribute of a file/dir */
449 FRESULT f_utime (const TCHAR* path, const FILINFO* fno); /* Change timestamp of a file/dir */
450 FRESULT f_chdir (const TCHAR* path); /* Change current directory */
451 FRESULT f_chdrive (const TCHAR* path); /* Change current drive */
452 FRESULT f_getcwd (TCHAR* buff, UINT len); /* Get current directory */
453 FRESULT f_getfree (const TCHAR* path, DWORD* nclst, FATFS** fatfs); /* Get number of free clusters …
454 FRESULT f_getlabel (const TCHAR* path, TCHAR* label, DWORD* vsn); /* Get volume label */
455 FRESULT f_setlabel (const TCHAR* label); /* Set volume label */
458 FRESULT f_mount (FATFS* fs, const TCHAR* path, BYTE opt); /* Mount/Unmount a logical drive */
459 FRESULT f_mkfs (const TCHAR* path, const MKFS_PARM* opt, void* work, UINT len); /* Create a FAT vol…
462 int f_putc (TCHAR c, FIL* fp); /* Put a character to the file */
463 int f_puts (const TCHAR* str, FIL* cp); /* Put a string to the file */
464 int f_printf (FIL* fp, const TCHAR* str, ...); /* Put a formatted string to the file */
465 TCHAR* f_gets (TCHAR* buff, int len, FIL* fp); /* Get a string from the file */
466 void f_clean (const TCHAR* path); /* clean all opening file and directory */
478 FRESULT mount_volume (const TCHAR **path, FATFS **rfs, BYTE mode);
486 FRESULT create_name (DIR *dp, const TCHAR **path);
506 FRESULT set_volumn_label(FATFS *fs, const TCHAR *label);