Home
last modified time | relevance | path

Searched refs:err_code (Results 1 – 2 of 2) sorted by relevance

/RvlSDK-2.1/build/demos/encdemo/src/
Dsample.c49 ENCResult err_code; in main() local
54 err_code = ENCConvertStringSjisToUnicode(NULL, &dstlen, sjis, &srclen); in main()
55 if (err_code) in main()
57 OSReport("ERROR: %d\n", err_code); in main()
65 err_code = ENCConvertStringSjisToUnicode(dst, &dstlen, sjis, &srclen); in main()
66 if (err_code) in main()
68 OSReport("ERROR: %d\n", err_code); in main()
97 err_code = ENCConvertStringUnicodeToSjis(NULL, &dstlen, uni, &srclen); in main()
98 if (err_code) in main()
100 OSReport("ERROR: %d\n", err_code); in main()
[all …]
Dunicode.c32 ENCResult err_code; in main() local
37 err_code = ENCConvertStringUtf32ToUtf16(NULL, &dstlen, utf32, &srclen); in main()
38 if (err_code) in main()
40 OSReport("ERROR: %d\n", err_code); in main()
48 err_code = ENCConvertStringUtf32ToUtf16(dst, &dstlen, utf32, &srclen); in main()
49 if (err_code) in main()
51 OSReport("ERROR: %d\n", err_code); in main()
80 err_code = ENCConvertStringUtf16ToUtf32(NULL, &dstlen, utf16, &srclen); in main()
81 if (err_code) in main()
83 OSReport("ERROR: %d\n", err_code); in main()
[all …]