Home | History | Annotate | Download | only in dist

Lines Matching full:codepage

2693 ** codepage is currently defined.  Filenames containing international
20722 static UconvObject uclCp = NULL; /* convert between local codepage and UCS-2 */
20747 ** Helper function to convert UTF-8 filenames to local OS/2 codepage.
20749 ** into UCS-2 and then from UCS-2 to the current codepage.
20766 /* conversion for current codepage which can be used for paths */
20773 ** Helper function to convert filenames from local codepage to UTF-8.
20774 ** The two-step process: first convert the incoming codepage-specific
20775 ** string into UCS-2 and then from UCS-2 to the codepage of UTF-8.
20791 /* conversion for current codepage which can be used for paths */
27522 ** current codepage settings for file apis.
27530 int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP;
27532 nByte = MultiByteToWideChar(codepage, 0, zFilename, -1, NULL,0)*sizeof(WCHAR);
27537 nByte = MultiByteToWideChar(codepage, 0, zFilename, -1, zMbcsFilename, nByte);
27547 ** user's Ansi codepage.
27555 int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP;
27557 nByte = WideCharToMultiByte(codepage, 0, zWideFilename, -1, 0, 0, 0, 0);
27562 nByte = WideCharToMultiByte(codepage, 0, zWideFilename, -1, zFilename, nByte,