Home | History | Annotate | Download | only in dist

Lines Matching defs:codepage

3194 ** codepage is currently defined.  Filenames containing international
23491 static UconvObject uclCp = NULL; /* convert between local codepage and UCS-2 */
23516 ** Helper function to convert UTF-8 filenames to local OS/2 codepage.
23518 ** into UCS-2 and then from UCS-2 to the current codepage.
23535 /* conversion for current codepage which can be used for paths */
23542 ** Helper function to convert filenames from local codepage to UTF-8.
23543 ** The two-step process: first convert the incoming codepage-specific
23544 ** string into UCS-2 and then from UCS-2 to the codepage of UTF-8.
23560 /* conversion for current codepage which can be used for paths */
33102 ** current codepage settings for file apis.
33110 int codepage = osAreFileApisANSI() ? CP_ACP : CP_OEMCP;
33112 nByte = osMultiByteToWideChar(codepage, 0, zFilename, -1, NULL,
33121 nByte = osMultiByteToWideChar(codepage, 0, zFilename, -1, zMbcsFilename,
33132 ** user's ANSI codepage.
33140 int codepage = osAreFileApisANSI() ? CP_ACP : CP_OEMCP;
33142 nByte = osWideCharToMultiByte(codepage, 0, zWideFilename, -1, 0, 0, 0, 0);
33150 nByte = osWideCharToMultiByte(codepage, 0, zWideFilename, -1, zFilename,