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

12

/frameworks/base/packages/VpnServices/src/com/android/server/vpn/
H A DVpnConnectingError.java27 VpnConnectingError(int errorCode) { argument
28 super("Connecting error: " + errorCode);
29 mErrorCode = errorCode;
H A DVpnService.java170 private void onError(int errorCode) { argument
171 onError(new VpnConnectingError(errorCode));
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DSmsResponse.java30 * errorCode: See 3GPP 27.005, 3.2.5 for GSM/UMTS,
33 int errorCode; field in class:SmsResponse
35 public SmsResponse(int messageRef, String ackPdu, int errorCode) { argument
38 this.errorCode = errorCode;
43 + ", errorCode = " + errorCode
/frameworks/base/core/java/android/accounts/
H A DAccountManagerResponse.java50 public void onError(int errorCode, String errorMessage) { argument
52 mResponse.onError(errorCode, errorMessage);
H A DAccountAuthenticatorResponse.java69 public void onError(int errorCode, String errorMessage) { argument
71 Log.v(TAG, "AccountAuthenticatorResponse.onError: " + errorCode + ", " + errorMessage);
74 mAccountAuthenticatorResponse.onError(errorCode, errorMessage);
H A DAccountManagerService.java1496 public void onError(int errorCode, String errorMessage) { argument
1499 Log.v(TAG, "Session.onError: " + errorCode + ", " + errorMessage);
1507 response.onError(errorCode, errorMessage);
/frameworks/base/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
H A DLVPSA_Init.c48 LVPSA_RETURN errorCode = LVPSA_OK; local
173 errorCode = LVPSA_Control (*phInstance, pControlParams);
175 if(errorCode!=0)
177 return errorCode;
180 errorCode = LVPSA_ApplyNewSettings (pLVPSA_Inst);
182 if(errorCode!=0)
184 return errorCode;
187 return(errorCode);
/frameworks/base/voip/java/android/net/sip/
H A DSipRegistrationListener.java42 * @param errorCode error code of this error
46 void onRegistrationFailed(String localProfileUri, int errorCode, argument
H A DSipErrorCode.java66 public static String toString(int errorCode) { argument
67 switch (errorCode) {
H A DSipSessionAdapter.java45 public void onCallChangeFailed(ISipSession session, int errorCode, argument
49 public void onError(ISipSession session, int errorCode, String message) { argument
58 public void onRegistrationFailed(ISipSession session, int errorCode, argument
H A DSipManager.java597 public void onRegistrationFailed(ISipSession session, int errorCode, argument
599 mListener.onRegistrationFailed(getUri(session), errorCode, message);
H A DSipSession.java167 * @param errorCode error code defined in {@link SipErrorCode}
170 public void onError(SipSession session, int errorCode, argument
178 * @param errorCode error code defined in {@link SipErrorCode}
181 public void onCallChangeFailed(SipSession session, int errorCode, argument
206 * @param errorCode error code defined in {@link SipErrorCode}
209 public void onRegistrationFailed(SipSession session, int errorCode, argument
492 public void onCallChangeFailed(ISipSession session, int errorCode,
495 mListener.onCallChangeFailed(SipSession.this, errorCode,
500 public void onError(ISipSession session, int errorCode, String message) {
502 mListener.onError(SipSession.this, errorCode, messag
[all...]
H A DSipAudioCall.java150 * @param errorCode error code of this error
154 public void onError(SipAudioCall call, int errorCode, argument
450 public void onCallChangeFailed(SipSession session, int errorCode,
453 mErrorCode = errorCode;
467 public void onError(SipSession session, int errorCode,
469 SipAudioCall.this.onError(errorCode, message);
483 public void onRegistrationFailed(SipSession session, int errorCode,
495 private void onError(int errorCode, String message) { argument
497 + SipErrorCode.toString(errorCode) + ": " + message);
498 mErrorCode = errorCode;
[all...]
/frameworks/base/core/java/com/android/internal/nfc/
H A DLlcpServiceSocket.java48 static LlcpException convertErrorToLlcpException(int errorCode) { argument
49 return convertErrorToLlcpException(errorCode, null);
52 static LlcpException convertErrorToLlcpException(int errorCode, argument
60 switch (errorCode) {
68 return new LlcpException("Unkown error code " + errorCode + message);
H A DLlcpSocket.java45 static LlcpException convertErrorToLlcpException(int errorCode) { argument
46 return convertErrorToLlcpException(errorCode, null);
49 static LlcpException convertErrorToLlcpException(int errorCode, argument
57 switch (errorCode) {
68 return new LlcpException("Unkown error code " + errorCode + message);
/frameworks/base/media/libeffects/lvm/lib/Reverb/src/
H A DLVREV_Process.c75 LVREV_ReturnStatus_en errorCode; local
82 errorCode = LVREV_ApplyNewSettings (pLVREV_Private);
84 if(errorCode != LVREV_SUCCESS)
86 return errorCode;
/frameworks/base/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_framedecoder.cpp161 ERROR_CODE errorCode = NO_DECODING_ERROR; local
180 errorCode = pvmp3_decode_header(&pVars->inputStream,
184 if (errorCode != NO_DECODING_ERROR)
187 return errorCode;
242 errorCode = pvmp3_get_side_info(&pVars->inputStream,
247 if (errorCode != NO_DECODING_ERROR)
250 return errorCode;
324 errorCode = NO_ENOUGH_MAIN_DATA_ERROR;
360 if (errorCode != NO_ENOUGH_MAIN_DATA_ERROR)
439 } /* if ( errorCode !
[all...]
/frameworks/base/voip/java/com/android/server/sip/
H A DSipSessionListenerProxy.java127 final int errorCode, final String message) {
132 mListener.onCallChangeFailed(session, errorCode, message);
140 public void onError(final ISipSession session, final int errorCode, argument
146 mListener.onError(session, errorCode, message);
182 final int errorCode, final String message) {
187 mListener.onRegistrationFailed(session, errorCode, message);
126 onCallChangeFailed(final ISipSession session, final int errorCode, final String message) argument
181 onRegistrationFailed(final ISipSession session, final int errorCode, final String message) argument
H A DSipSessionGroup.java1175 private void endCallOnError(int errorCode, String message) { argument
1177 mProxy.onError(this, errorCode, message);
1185 private void onError(int errorCode, String message) { argument
1190 onRegistrationFailed(errorCode, message);
1193 endCallOnError(errorCode, message);
1264 private void onRegistrationFailed(int errorCode, String message) { argument
1266 mProxy.onRegistrationFailed(this, errorCode, message);
/frameworks/base/core/java/android/webkit/
H A DWebViewClient.java132 * (i.e. the main resource is unavailable). The errorCode parameter
135 * @param errorCode The error code corresponding to an ERROR_* value.
139 public void onReceivedError(WebView view, int errorCode, argument
H A DBrowserFrame.java311 * @param errorCode The HTTP error code.
314 * of domain identifier. Change errorCode to an enum for a cleaner
317 private void reportError(final int errorCode, final String description, argument
322 mCallbackProxy.onReceivedError(errorCode, description, failingUrl);
/frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
H A DPowerTestActivity.java202 public void onReceivedError(WebView view, int errorCode, String description, argument
205 Log.v(LOGTAG, "WebCore error: code=" + errorCode
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DReliabilityTestActivity.java200 public void onReceivedError(WebView view, int errorCode, String description, argument
202 Log.v(LOGTAG, "Received WebCore error: code=" + errorCode
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiNative.java41 public native static String getErrorString(int errorCode); argument
/frameworks/base/telephony/java/com/android/internal/telephony/sip/
H A DSipPhone.java901 public void onError(SipAudioCall call, int errorCode, argument
903 switch (errorCode) {
932 Log.w(LOG_TAG, "error: " + SipErrorCode.toString(errorCode)

Completed in 955 milliseconds

12