Home | History | Annotate | Download | only in io

Lines Matching refs:errorCode

47         UErrorCode errorCode = U_ZERO_ERROR;
50 converter = u_getDefaultConverter(&errorCode);
51 if(U_SUCCESS(errorCode)) {
56 errorCode = U_ZERO_ERROR;
58 ucnv_fromUnicode(converter, &s, sLimit, &us, uLimit, 0, FALSE, &errorCode);
65 } while(errorCode == U_BUFFER_OVERFLOW_ERROR);
87 UErrorCode errorCode = U_ZERO_ERROR;
90 converter = u_getDefaultConverter(&errorCode);
91 if(U_SUCCESS(errorCode)) {
113 errorCode = U_ZERO_ERROR;
119 ucnv_toUnicode(converter, &us, uLimit, &s, sLimit, 0, !continueReading, &errorCode);
120 if(U_FAILURE(errorCode)) {