Home | History | Annotate | Download | only in dist

Lines Matching full:codepage

2693 ** codepage is currently defined.  Filenames containing international
20727 static UconvObject uclCp = NULL; /* convert between local codepage and UCS-2 */
20752 ** Helper function to convert UTF-8 filenames to local OS/2 codepage.
20754 ** into UCS-2 and then from UCS-2 to the current codepage.
20771 /* conversion for current codepage which can be used for paths */
20778 ** Helper function to convert filenames from local codepage to UTF-8.
20779 ** The two-step process: first convert the incoming codepage-specific
20780 ** string into UCS-2 and then from UCS-2 to the codepage of UTF-8.
20796 /* conversion for current codepage which can be used for paths */
27527 ** current codepage settings for file apis.
27535 int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP;
27537 nByte = MultiByteToWideChar(codepage, 0, zFilename, -1, NULL,0)*sizeof(WCHAR);
27542 nByte = MultiByteToWideChar(codepage, 0, zFilename, -1, zMbcsFilename, nByte);
27552 ** user's Ansi codepage.
27560 int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP;
27562 nByte = WideCharToMultiByte(codepage, 0, zWideFilename, -1, 0, 0, 0, 0);
27567 nByte = WideCharToMultiByte(codepage, 0, zWideFilename, -1, zFilename, nByte,