Searched defs:errorCode (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/util/logging/
H A DErrorManager.java86 * @param errorCode
90 public void error(String message, Exception exception, int errorCode) { argument
97 System.err.println(this.getClass().getName() + ": " + FAILURES[errorCode]);
/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
H A DChunkHandler.java61 public static Chunk createFailChunk(int errorCode, String msg) { argument
67 out.putInt(errorCode);
/libcore/luni/src/main/native/
H A Dlibcore_icu_NativeConverter.cpp125 UErrorCode errorCode = U_ZERO_ERROR; local
126 ucnv_fromUnicode(cnv , &cTarget, cTargetLimit, &mySource, mySourceLimit, NULL, (UBool) flush, &errorCode);
131 if (errorCode == U_ILLEGAL_CHAR_FOUND || errorCode == U_INVALID_CHAR_FOUND) {
142 if (shouldCodecThrow(flush, errorCode)) {
143 maybeThrowIcuException(env, "ucnv_fromUnicode", errorCode);
145 return errorCode;
180 UErrorCode errorCode = U_ZERO_ERROR; local
181 ucnv_toUnicode(cnv, &cTarget, cTargetLimit, &mySource, mySourceLimit, NULL, flush, &errorCode);
186 if (errorCode
233 UErrorCode errorCode = U_ZERO_ERROR; local
444 UErrorCode errorCode = U_ZERO_ERROR; local
528 UErrorCode errorCode = U_ZERO_ERROR; local
567 UErrorCode errorCode = U_ZERO_ERROR; local
[all...]

Completed in 661 milliseconds