Home
last modified time | relevance | path

Searched refs:TCHAR (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.6.0/components/fatfs/src/
Dff.h85 typedef WCHAR TCHAR; typedef
89 typedef char TCHAR; typedef
93 typedef DWORD TCHAR; typedef
99 typedef char TCHAR; typedef
230 const TCHAR* pat; /* Pointer to the name matching pattern */
244 TCHAR altname[FF_SFN_BUF + 1];/* Altenative file name */
245 TCHAR fname[FF_LFN_BUF + 1]; /* Primary file name */
247 TCHAR fname[12 + 1]; /* File name */
283 FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */
290 FRESULT f_opendir (FF_DIR* dp, const TCHAR* path); /* Open a directory */
[all …]
Dff.c746 const TCHAR** str /* Pointer to pointer to TCHAR string in configured encoding */ in tchar2uni()
750 const TCHAR *p = *str; in tchar2uni()
791 uc = (TCHAR)*p++; /* Get a unit */ in tchar2uni()
820 TCHAR* buf, /* Output buffer */ in put_utf()
844 *buf = (TCHAR)chr; in put_utf()
849 *buf++ = (TCHAR)(0xC0 | (chr >> 6 & 0x1F)); in put_utf()
850 *buf++ = (TCHAR)(0x80 | (chr >> 0 & 0x3F)); in put_utf()
855 *buf++ = (TCHAR)(0xE0 | (chr >> 12 & 0x0F)); in put_utf()
856 *buf++ = (TCHAR)(0x80 | (chr >> 6 & 0x3F)); in put_utf()
857 *buf++ = (TCHAR)(0x80 | (chr >> 0 & 0x3F)); in put_utf()
[all …]
D00history.txt141 Changed some types on the API, XCHAR->TCHAR.
/hal_espressif-3.6.0/components/wpa_supplicant/src/utils/
Dcommon.h395 void wpa_unicode2ascii_inplace(TCHAR *str);
396 TCHAR * wpa_strdup_tchar(const char *str);