Searched refs:errorCode (Results 1 - 4 of 4) sorted by relevance
/libcore/luni/src/main/native/ |
H A D | libcore_icu_NativeConverter.cpp | 243 UErrorCode errorCode = U_ZERO_ERROR; local 244 ucnv_fromUnicode(cnv, &cTarget, cTargetLimit, reinterpret_cast<const UChar**>(&mySource), mySourceLimit, NULL, (UBool) flush, &errorCode); 249 if (errorCode == U_ILLEGAL_CHAR_FOUND || errorCode == U_INVALID_CHAR_FOUND || 250 errorCode == U_TRUNCATED_CHAR_FOUND) { 261 if (shouldCodecThrow(flush, errorCode)) { 262 maybeThrowIcuException(env, "ucnv_fromUnicode", errorCode); 264 return errorCode; 299 UErrorCode errorCode = U_ZERO_ERROR; local 300 ucnv_toUnicode(cnv, &cTarget, cTargetLimit, &mySource, mySourceLimit, NULL, flush, &errorCode); 451 UErrorCode errorCode = U_ZERO_ERROR; local 545 UErrorCode errorCode = U_ZERO_ERROR; local 588 UErrorCode errorCode = U_ZERO_ERROR; local [all...] |
/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/ |
H A D | ChunkHandler.java | 61 public static Chunk createFailChunk(int errorCode, String msg) { argument 67 out.putInt(errorCode);
|
/libcore/ojluni/src/main/java/java/util/prefs/ |
H A D | FileSystemPreferences.java | 886 int errorCode = 0; 894 errorCode = result[ERROR_CODE]; 910 checkLockFile0ErrorCode(errorCode); 915 checkLockFile0ErrorCode(errorCode); 923 private void checkLockFile0ErrorCode (int errorCode) argument 925 if (errorCode == EACCES) 929 if (errorCode != EAGAIN) 932 " Unix error code " + errorCode + ".");
|
/libcore/luni/src/test/java/libcore/libcore/net/ |
H A D | NetworkSecurityPolicyTest.java | 330 public void error(String message, Exception exception, int errorCode) { argument
|
Completed in 336 milliseconds