Lines Matching refs:zWideText
48922 LPWSTR zWideText; in winUtf8ToUnicode() local
48928 zWideText = sqlite3MallocZero( nChar*sizeof(WCHAR) ); in winUtf8ToUnicode()
48929 if( zWideText==0 ){ in winUtf8ToUnicode()
48932 nChar = osMultiByteToWideChar(CP_UTF8, 0, zText, -1, zWideText, in winUtf8ToUnicode()
48935 sqlite3_free(zWideText); in winUtf8ToUnicode()
48936 zWideText = 0; in winUtf8ToUnicode()
48938 return zWideText; in winUtf8ToUnicode()
48947 static char *winUnicodeToUtf8(LPCWSTR zWideText){ in winUnicodeToUtf8() argument
48951 nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, 0, 0, 0, 0); in winUnicodeToUtf8()
48959 nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, zText, nByte, in winUnicodeToUtf8()
49004 static char *winUnicodeToMbcs(LPCWSTR zWideText, int useAnsi){ in winUnicodeToMbcs() argument
49009 nByte = osWideCharToMultiByte(codepage, 0, zWideText, -1, 0, 0, 0, 0); in winUnicodeToMbcs()
49017 nByte = osWideCharToMultiByte(codepage, 0, zWideText, -1, zText, in winUnicodeToMbcs()
49083 SQLITE_API char *sqlite3_win32_unicode_to_utf8(LPCWSTR zWideText){ in sqlite3_win32_unicode_to_utf8() argument
49085 if( !zWideText ){ in sqlite3_win32_unicode_to_utf8()
49093 return winUnicodeToUtf8(zWideText); in sqlite3_win32_unicode_to_utf8()