Searched defs:onError (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/base/core/java/android/speech/tts/
H A DUtteranceProgressListener.java39 * be a call to both {@link #onDone(String)} and {@link #onError(String)} for
44 public abstract void onError(String utteranceId); method in class:UtteranceProgressListener
61 public void onError(String utteranceId) {
H A DEventLogger.java26 * Note that {@link EventLogger#onStopped()} and {@link EventLogger#onError()}
106 public void onError() { method in class:EventLogger
/frameworks/base/core/java/android/accounts/
H A DAccountManagerResponse.java50 public void onError(int errorCode, String errorMessage) { method in class:AccountManagerResponse
52 mResponse.onError(errorCode, errorMessage);
H A DAccountAuthenticatorResponse.java69 public void onError(int errorCode, String errorMessage) { method in class:AccountAuthenticatorResponse
71 Log.v(TAG, "AccountAuthenticatorResponse.onError: " + errorCode + ", " + errorMessage);
74 mAccountAuthenticatorResponse.onError(errorCode, errorMessage);
H A DAccountManager.java1403 public void onError(int code, String message) { method in class:AccountManager.AmsTask.Response
1460 onError(ERROR_CODE_INVALID_RESPONSE, "no result in response");
1463 public void onError(int code, String message) { method in class:AccountManager.BaseFutureTask.Response
1651 public void onError(int errorCode, String errorMessage)
1653 mResponse.onError(errorCode, errorMessage);
H A DAccountManagerService.java493 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION, "remote exception");
502 response.onError(AccountManager.ERROR_CODE_INVALID_RESPONSE, "null bundle");
997 onError(AccountManager.ERROR_CODE_INVALID_RESPONSE,
1300 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION, "remote exception");
1307 onError(AccountManager.ERROR_CODE_INVALID_RESPONSE, "null bundle");
1510 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION, "bind failure");
1535 onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION,
1545 response.onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION,
1562 response.onError(AccountManager.ERROR_CODE_REMOTE_EXCEPTION,
1595 + " calling onError() o
1622 public void onError(int errorCode, String errorMessage) { method in class:AccountManagerService.Session
[all...]
/frameworks/base/core/java/android/speech/
H A DRecognitionListener.java66 void onError(int error); method in interface:RecognitionListener
H A DSpeechRecognizer.java272 mListener.onError(ERROR_CLIENT);
285 mListener.onError(ERROR_CLIENT);
342 mListener.onError(ERROR_CLIENT);
356 mListener.onError(ERROR_CLIENT);
370 mListener.onError(ERROR_CLIENT);
378 mListener.onError(ERROR_CLIENT);
436 mInternalListener.onError((Integer) msg.obj);
469 public void onError(final int error) { method in class:SpeechRecognizer.InternalListener
/frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
H A DAwaitableErrorListener.java35 public boolean onError(MediaPlayer mp, int what, int extra) { method in class:AwaitableErrorListener
/frameworks/base/voip/java/android/net/sip/
H A DSipSessionAdapter.java53 public void onError(ISipSession session, int errorCode, String message) { method in class:SipSessionAdapter
H A DSipSession.java184 public void onError(SipSession session, int errorCode, method in class:SipSession.Listener
524 public void onError(ISipSession session, int errorCode, String message) {
526 mListener.onError(SipSession.this, errorCode, message);
H A DSipAudioCall.java156 public void onError(SipAudioCall call, int errorCode, method in class:SipAudioCall.Listener
164 * not re-directed to this callback and are handled in {@link #onError}.
232 listener.onError(this, mErrorCode, mErrorMessage);
500 listener.onError(SipAudioCall.this, mErrorCode,
509 public void onError(SipSession session, int errorCode,
511 SipAudioCall.this.onError(errorCode, message);
557 private void onError(int errorCode, String message) { method in class:SipAudioCall
565 listener.onError(this, errorCode, message);
567 Log.i(TAG, "onError(): " + t);
609 * and {@link Listener#onError onErro
[all...]
/frameworks/base/voip/java/com/android/server/sip/
H A DSipSessionListenerProxy.java154 public void onError(final ISipSession session, final int errorCode, method in class:SipSessionListenerProxy
160 mListener.onError(session, errorCode, message);
162 handle(t, "onError()");
H A DSipService.java610 public void onError(ISipSession session, int errorCode, method in class:SipService.SipSessionGroupExt
679 onError(SipErrorCode.CLIENT_ERROR, t.toString());
765 public void onError(int errorCode, String description) { method in class:SipService.IntervalMeasurementProcess
895 public void onError(int errorCode, String description) { method in class:SipService.AutoRegistrationProcess
H A DSipSessionGroup.java199 // SipSessionImpl removes itself from mSessionMap in onError() in the
202 s.onError(SipErrorCode.DATA_CONNECTION_LOST,
368 session.onError(e);
514 void onError(int errorCode, String description); method in interface:SipSessionGroup.KeepAliveProcessCallback
559 onError(SipErrorCode.TIME_OUT, "Session timed out!");
663 onError(e);
706 onError(SipErrorCode.IN_PROGRESS,
816 onError(new SipException("dialog terminated"));
863 onError(SipErrorCode.TRANSACTION_TERMINTED,
880 onError(SipErrorCod
1373 private void onError(int errorCode, String message) { method in class:SipSessionGroup.SipSessionImpl
1386 private void onError(Throwable exception) { method in class:SipSessionGroup.SipSessionImpl
1391 private void onError(Response response) { method in class:SipSessionGroup.SipSessionImpl
1542 public void onError(ISipSession session, int errorCode, String message) { method in class:SipSessionGroup.SipSessionImpl.KeepAliveProcess
1813 public void onError(final int errorCode, final String description) { method in class:SipSessionGroup.KeepAliveProcessCallbackProxy
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java129 public void onError(int error, android.hardware.Camera camera) { method in class:MediaRecorderStressTest.CameraErrorCallback
137 public void onError(MediaRecorder mr, int what, int extra) { method in class:MediaRecorderStressTest.RecorderErrorCallback
/frameworks/base/core/java/android/webkit/
H A DHTML5Audio.java151 public boolean onError(MediaPlayer mp, int what, int extra) { method in class:HTML5Audio
H A DHTML5VideoViewProxy.java280 public boolean onError(MediaPlayer mp, int what, int extra) { method in class:HTML5VideoViewProxy
/frameworks/base/drm/java/android/drm/
H A DDrmManagerClient.java100 public void onError(DrmManagerClient client, DrmErrorEvent event); method in interface:DrmManagerClient.OnErrorListener
161 mOnErrorListener.onError(DrmManagerClient.this, error);
224 mOnErrorListener.onError(DrmManagerClient.this, error);
/frameworks/base/media/java/android/media/videoeditor/
H A DVideoEditor.java120 public void onError(VideoEditor videoEditor, int error); method in interface:VideoEditor.PreviewProgressListener
/frameworks/base/media/java/android/media/
H A DAudioSystem.java154 void onError(int error); method in interface:AudioSystem.ErrorCallback
182 errorCallback.onError(error);
H A DMediaRecorder.java722 void onError(MediaRecorder mr, int what, int extra); method in interface:MediaRecorder.OnErrorListener
887 mOnErrorListener.onError(mMediaRecorder, msg.arg1, msg.arg2);
H A DMediaPlayer.java96 * the user supplied callback method OnErrorListener.onError() won't be
99 * the user supplied callback method OnErrorListener.onError() will be
128 * OnErrorListener.onError() method if an OnErrorListener has been
1553 error_was_handled = mOnErrorListener.onError(mMediaPlayer, msg.arg1, msg.arg2);
1834 boolean onError(MediaPlayer mp, int what, int extra); method in interface:MediaPlayer.OnErrorListener
/frameworks/base/telephony/java/com/android/internal/telephony/sip/
H A DSipPhone.java683 protected void onError(DisconnectCause cause) {
886 protected abstract void onError(Connection.DisconnectCause cause); method in class:SipPhone.SipAudioCallAdapter
901 public void onError(SipAudioCall call, int errorCode, method in class:SipPhone.SipAudioCallAdapter
905 onError(Connection.DisconnectCause.SERVER_UNREACHABLE);
908 onError(Connection.DisconnectCause.NUMBER_UNREACHABLE);
911 onError(Connection.DisconnectCause.INVALID_NUMBER);
915 onError(Connection.DisconnectCause.TIMED_OUT);
918 onError(Connection.DisconnectCause.LOST_SIGNAL);
921 onError(Connection.DisconnectCause.INVALID_CREDENTIALS);
924 onError(Connectio
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DRIL.java171 onError(int error, Object ret) { method in class:RILRequest
304 rr.onError(RADIO_NOT_AVAILABLE, null);
348 rr.onError(RADIO_NOT_AVAILABLE, null);
357 rr.onError(GENERIC_FAILURE, null);
2081 rr.onError(RADIO_NOT_AVAILABLE, null);
2129 rr.onError(error, null);
2309 rr.onError(error, ret);

Completed in 2852 milliseconds

12