Lines Matching refs:zWideText
1678 LPWSTR zWideText; in winUtf8ToUnicode() local
1684 zWideText = sqlite3MallocZero( nChar*sizeof(WCHAR) ); in winUtf8ToUnicode()
1685 if( zWideText==0 ){ in winUtf8ToUnicode()
1688 nChar = osMultiByteToWideChar(CP_UTF8, 0, zText, -1, zWideText, in winUtf8ToUnicode()
1691 sqlite3_free(zWideText); in winUtf8ToUnicode()
1692 zWideText = 0; in winUtf8ToUnicode()
1694 return zWideText; in winUtf8ToUnicode()
1702 static char *winUnicodeToUtf8(LPCWSTR zWideText){ in winUnicodeToUtf8() argument
1706 nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, 0, 0, 0, 0); in winUnicodeToUtf8()
1714 nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, zText, nByte, in winUnicodeToUtf8()
1758 static char *winUnicodeToMbcs(LPCWSTR zWideText, int useAnsi){ in winUnicodeToMbcs() argument
1763 nByte = osWideCharToMultiByte(codepage, 0, zWideText, -1, 0, 0, 0, 0); in winUnicodeToMbcs()
1771 nByte = osWideCharToMultiByte(codepage, 0, zWideText, -1, zText, in winUnicodeToMbcs()
1835 char *sqlite3_win32_unicode_to_utf8(LPCWSTR zWideText){ in sqlite3_win32_unicode_to_utf8() argument
1837 if( !zWideText ){ in sqlite3_win32_unicode_to_utf8()
1845 return winUnicodeToUtf8(zWideText); in sqlite3_win32_unicode_to_utf8()