• Home
  • Raw
  • Download

Lines Matching refs:TCHAR

580 	const TCHAR** str		/* Pointer to pointer to TCHAR string in configured encoding */  in tchar2uni()
584 const TCHAR *p = *str; in tchar2uni()
625 uc = (TCHAR)*p++; /* Get a unit */ in tchar2uni()
654 TCHAR* buf, /* Output buffer */ in put_utf()
678 *buf = (TCHAR)chr; in put_utf()
683 *buf++ = (TCHAR)(0xC0 | (chr >> 6 & 0x1F)); in put_utf()
684 *buf++ = (TCHAR)(0x80 | (chr >> 0 & 0x3F)); in put_utf()
689 *buf++ = (TCHAR)(0xE0 | (chr >> 12 & 0x0F)); in put_utf()
690 *buf++ = (TCHAR)(0x80 | (chr >> 6 & 0x3F)); in put_utf()
691 *buf++ = (TCHAR)(0x80 | (chr >> 0 & 0x3F)); in put_utf()
700 *buf++ = (TCHAR)(0xF0 | (chr >> 18 & 0x07)); in put_utf()
701 *buf++ = (TCHAR)(0x80 | (chr >> 12 & 0x3F)); in put_utf()
702 *buf++ = (TCHAR)(0x80 | (chr >> 6 & 0x3F)); in put_utf()
703 *buf++ = (TCHAR)(0x80 | (chr >> 0 & 0x3F)); in put_utf()
716 *buf++ = (TCHAR)chr; in put_utf()
726 *buf++ = (TCHAR)wc; /* Store DBC 2nd byte */ in put_utf()
730 *buf++ = (TCHAR)wc; /* Store the character */ in put_utf()
2163 TCHAR c; in get_fileinfo()
2202 fno->altname[di++] = (TCHAR)wc; /* Store it without any conversion */ in get_fileinfo()
2215 fno->fname[di] = (TCHAR)wc; in get_fileinfo()
2225 c = (TCHAR)dp->dir[si++]; in get_fileinfo()
2254 const TCHAR** ptr /* Pointer to pointer to the ANSI/OEM or Unicode string */ in get_achar()
2285 const TCHAR* pat, /* Matching pattern */ in pattern_match()
2286 const TCHAR* nam, /* String to be tested */ in pattern_match()
2291 const TCHAR *pptr, *nptr; in pattern_match()
2335 const TCHAR** path /* Pointer to pointer to the segment in the path string */ in create_name()
2343 const TCHAR *p; in create_name()
2536 const TCHAR* path /* Full-path string to find a file or directory */ in follow_path()
2600 const TCHAR** path /* Pointer to pointer to the path name */ in get_ldnumber()
2603 const TCHAR *tp, *tt; in get_ldnumber()
2604 TCHAR tc; in get_ldnumber()
2629 } while (c && (TCHAR)c == tc); in get_ldnumber()
2648 } while (c && (TCHAR)c == tc); in get_ldnumber()
2778 const TCHAR** path, /* Pointer to pointer to the path name (drive number) */ in mount_volume()
3034 const TCHAR* path, /* Logical drive number to be mounted/unmounted */ in f_mount()
3041 const TCHAR *rp = path; in f_mount()
3248 const TCHAR* path, /* Pointer to the file name */ in f_open()
3873 const TCHAR* path /* Drive number to set */ in f_chdrive()
3890 const TCHAR* path /* Pointer to the directory path */ in f_chdir()
3935 TCHAR* buff, /* Pointer to the directory path */ in f_getcwd()
3944 TCHAR *tp = buff; in f_getcwd()
3957 res = mount_volume((const TCHAR**)&buff, &fs, 0); /* Get current volume */ in f_getcwd()
3997 if (FF_STR_VOLUME_ID == 2) *tp++ = (TCHAR)'/'; in f_getcwd()
3998 for (vl = 0; vl < n; *tp++ = (TCHAR)vp[vl], vl++) ; in f_getcwd()
3999 if (FF_STR_VOLUME_ID == 1) *tp++ = (TCHAR)':'; in f_getcwd()
4004 *tp++ = (TCHAR)'0' + CurrVol; in f_getcwd()
4005 *tp++ = (TCHAR)':'; in f_getcwd()
4189 const TCHAR* path /* Pointer to the directory path */ in f_opendir()
4337 const TCHAR* path, /* Pointer to the directory to open */ in f_findfirst()
4338 const TCHAR* pattern /* Pointer to the matching pattern */ in f_findfirst()
4362 const TCHAR* path, /* Pointer to the file path */ in f_stat()
4442 const TCHAR* path, /* Logical drive number */ in f_getfree()
4570 const TCHAR* path /* Pointer to the file or directory path */ in f_unlink()
4719 const TCHAR* path /* Pointer to the directory path */ in f_mkdir()
4854 const TCHAR* path_old, /* Pointer to the object name to be renamed */
4855 const TCHAR* path_new /* Pointer to the new name */
5015 const TCHAR* path, /* Pointer to the file path */
5081 const TCHAR* path, /* Pointer to the file/directory name */
5120 const TCHAR* path, /* Logical drive number */
5121 TCHAR* label, /* Buffer to store the volume label */
5151 label[di++] = (TCHAR)wc;
5192 FRESULT set_volumn_label(FATFS *fs, const TCHAR *label)
5263 const TCHAR* label /* Volume label to set with heading logical drive number */
5581 const TCHAR* path, /* Logical drive number */
6388 TCHAR* f_gets (
6389 TCHAR* buff, /* Pointer to the buffer to store read string */
6395 TCHAR *p = buff;
6460 *p++ = (TCHAR)(0xD800 | ((dc >> 10) - 0x40)); nc++; /* Make and output high surrogate */
6463 *p++ = (TCHAR)dc; nc++;
6467 *p++ = (TCHAR)dc;
6472 *p++ = (TCHAR)(0xC0 | (dc >> 6 & 0x1F));
6473 *p++ = (TCHAR)(0x80 | (dc >> 0 & 0x3F));
6477 *p++ = (TCHAR)(0xE0 | (dc >> 12 & 0x0F));
6478 *p++ = (TCHAR)(0x80 | (dc >> 6 & 0x3F));
6479 *p++ = (TCHAR)(0x80 | (dc >> 0 & 0x3F));
6482 *p++ = (TCHAR)(0xF0 | (dc >> 18 & 0x07));
6483 *p++ = (TCHAR)(0x80 | (dc >> 12 & 0x3F));
6484 *p++ = (TCHAR)(0x80 | (dc >> 6 & 0x3F));
6485 *p++ = (TCHAR)(0x80 | (dc >> 0 & 0x3F));
6500 *p++ = (TCHAR)dc; nc++;
6535 static void putc_bfd (putbuff* pb, TCHAR c)
6543 const TCHAR *tp;
6585 tp = (const TCHAR*)pb->bs;
6688 TCHAR c, /* A character to be output */
6708 const TCHAR* str, /* Pointer to the string to be output */
6729 const TCHAR* fmt, /* Pointer to the format string */
6738 TCHAR c, d, str[32], *p;
6778 p = va_arg(arp, TCHAR*);
6788 putc_bfd(&pb, (TCHAR)va_arg(arp, int));
6820 d = (TCHAR)(v % r); v /= r;