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

/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DErrorCodeException.java23 private int errorCode; field in class:ErrorCodeException
25 public ErrorCodeException(int errorCode){ argument
26 this.errorCode = errorCode;
30 return errorCode;
/dalvik/libcore/logging/src/main/java/java/util/logging/
H A DErrorManager.java108 * @param errorCode
114 public void error(String message, Exception exception, int errorCode) { argument
122 + ": " + FAILURES[errorCode]); //$NON-NLS-1$
/dalvik/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);
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DHandlerTest.java767 public void error(String msg, Exception ex, int errorCode) { argument
770 CallVerificationStack.getInstance().push(errorCode);
/dalvik/libcore/icu/src/main/native/
H A DConverterInterface.c49 UErrorCode errorCode = U_ZERO_ERROR; local
55 conv = ucnv_open(cnvName,&errorCode);
59 if (icu4jni_error(env, errorCode) != FALSE) {
108 UErrorCode errorCode =U_ZERO_ERROR; local
122 &errorCode);
132 &errorCode);
135 return errorCode;
137 errorCode = U_ILLEGAL_ARGUMENT_ERROR;
138 return errorCode;
151 UErrorCode errorCode local
198 UErrorCode errorCode =U_ZERO_ERROR; local
251 UErrorCode errorCode = U_ZERO_ERROR; local
282 UErrorCode errorCode =U_ZERO_ERROR; local
336 UErrorCode errorCode = U_ZERO_ERROR; local
372 UErrorCode errorCode = U_ZERO_ERROR; local
391 UErrorCode errorCode =U_ZERO_ERROR; local
436 UErrorCode errorCode =U_ZERO_ERROR; local
477 UErrorCode errorCode =U_ZERO_ERROR; local
527 UErrorCode errorCode = U_ZERO_ERROR; local
563 UErrorCode errorCode = U_ZERO_ERROR; local
596 UErrorCode errorCode = U_ZERO_ERROR; local
647 UErrorCode errorCode =U_ZERO_ERROR; local
673 UErrorCode errorCode =U_ZERO_ERROR; local
1064 UErrorCode errorCode =U_ZERO_ERROR; local
1191 UErrorCode errorCode =U_ZERO_ERROR; local
1245 UErrorCode errorCode = U_ZERO_ERROR; local
[all...]
/dalvik/libcore/x-net/src/main/native/
H A Dorg_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl.cpp1579 int errorCode = 0; local
1581 int ret = sslRead(ssl, (char *) &byteRead, 1, &returnCode, &errorCode, timeout);
1586 throwIOExceptionWithSslErrors(env, returnCode, errorCode,
1614 int errorCode = 0; local
1617 sslRead(ssl, (char*) (bytes + offset), len, &returnCode, &errorCode, timeout);
1623 throwIOExceptionWithSslErrors(env, returnCode, errorCode,
1645 int errorCode = 0; local
1647 int ret = sslWrite(ssl, buf, 1, &returnCode, &errorCode);
1651 throwIOExceptionWithSslErrors(env, returnCode, errorCode,
1671 int errorCode local
[all...]
/dalvik/libcore/luni/src/main/native/
H A Dorg_apache_harmony_luni_platform_OSNetworkSystem.cpp189 * Throws an SocketException with the message affiliated with the errorCode.
191 static void throwSocketException(JNIEnv *env, int errorCode) { argument
193 netLookupErrorString(errorCode));
569 static int convertError(int errorCode) { argument
570 switch (errorCode) {
618 LOGE("unclassified errno %d (%s)", errorCode, strerror(errorCode));

Completed in 137 milliseconds