Home | History | Annotate | Download | only in io

Lines Matching full:errorcode

42         UErrorCode errorCode = U_ZERO_ERROR;
45 converter = u_getDefaultConverter(&errorCode);
46 if(U_SUCCESS(errorCode)) {
51 errorCode = U_ZERO_ERROR;
53 ucnv_fromUnicode(converter, &s, sLimit, &us, uLimit, 0, FALSE, &errorCode);
60 } while(errorCode == U_BUFFER_OVERFLOW_ERROR);
82 UErrorCode errorCode = U_ZERO_ERROR;
85 converter = u_getDefaultConverter(&errorCode);
86 if(U_SUCCESS(errorCode)) {
108 errorCode = U_ZERO_ERROR;
114 ucnv_toUnicode(converter, &us, uLimit, &s, sLimit, 0, !continueReading, &errorCode);
115 if(U_FAILURE(errorCode)) {