Searched refs:onError (Results 1 - 25 of 90) sorted by relevance

1234

/frameworks/base/core/java/android/service/persistentdata/
H A DPersistentDataBlockManager.java63 onError("writing data");
75 onError("reading data");
89 onError("getting data block size");
103 onError("getting maximum data block size");
116 onError("wiping persistent partition");
127 onError("setting OEM unlock enabled to " + enabled);
138 onError("getting OEM unlock enabled bit");
143 private void onError(String msg) { method in class:PersistentDataBlockManager
/frameworks/base/core/java/android/speech/tts/
H A DUtteranceProgressListener.java39 * be a call to both {@link #onDone(String)} and {@link #onError(String)} for
43 * @deprecated Use {@link #onError(String,int)} instead
46 public abstract void onError(String utteranceId); method in class:UtteranceProgressListener
52 * be a call to both {@link #onDone(String)} and {@link #onError(String,int)} for
53 * the same utterance. The default implementation calls {@link #onError(String)}.
58 public void onError(String utteranceId, int errorCode) { method in class:UtteranceProgressListener
59 onError(utteranceId);
77 public void onError(String utteranceId) {
H A DITextToSpeechCallback.aidl52 void onError(String utteranceId, int errorCode);
/frameworks/base/core/java/android/accounts/
H A DIAccountAuthenticatorResponse.aidl27 void onError(int errorCode, String errorMessage);
H A DIAccountManagerResponse.aidl26 void onError(int errorCode, String errorMessage);
H A DAccountManagerResponse.java50 public void onError(int errorCode, String errorMessage) { method in class:AccountManagerResponse
52 mResponse.onError(errorCode, errorMessage);
H A DAccountAuthenticatorActivity.java75 mAccountAuthenticatorResponse.onError(AccountManager.ERROR_CODE_CANCELED,
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);
/frameworks/base/core/java/android/service/fingerprint/
H A DFingerprintManagerReceiver.java24 * remaining hits 0 without {@link #onError(int)} being called.
67 public void onError(int error) { } method in class:FingerprintManagerReceiver
H A DIFingerprintServiceReceiver.aidl29 void onError(int error);
/frameworks/base/telecomm/java/android/telecom/
H A DResponse.java39 void onError(IN request, int code, String msg); method in interface:Response
/frameworks/base/core/java/android/hardware/soundtrigger/
H A DIRecognitionStatusCallback.aidl36 void onError(int status);
/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DRemoteServiceCallback.aidl27 void onError();
/frameworks/base/core/java/android/speech/
H A DRecognitionListener.java66 void onError(int error); method in interface:RecognitionListener
H A DIRecognitionListener.aidl64 void onError(in int error);
H A DSpeechRecognizer.java278 mListener.onError(ERROR_CLIENT);
291 mListener.onError(ERROR_CLIENT);
348 mListener.onError(ERROR_CLIENT);
362 mListener.onError(ERROR_CLIENT);
376 mListener.onError(ERROR_CLIENT);
384 mListener.onError(ERROR_CLIENT);
450 mInternalListener.onError((Integer) msg.obj);
483 public void onError(final int error) { method in class:SpeechRecognizer.InternalListener
H A DRecognitionService.java114 listener.onError(SpeechRecognizer.ERROR_RECOGNIZER_BUSY);
116 Log.d(TAG, "onError call from startListening failed");
125 listener.onError(SpeechRecognizer.ERROR_CLIENT);
128 listener.onError(SpeechRecognizer.ERROR_RECOGNIZER_BUSY);
133 } catch (RemoteException e) { // occurs if onError fails
134 Log.d(TAG, "onError call from stopListening failed");
179 listener.onError(SpeechRecognizer.ERROR_INSUFFICIENT_PERMISSIONS);
268 mListener.onError(error);
/frameworks/base/core/java/android/app/trust/
H A DTrustManager.java58 onError(e);
71 onError(e);
86 onError(e);
99 onError(e);
130 onError(e);
145 onError(e);
150 private void onError(Exception e) { method in class:TrustManager
/frameworks/support/v4/ics-mr1/android/support/v4/speech/tts/
H A DTextToSpeechICSMR1.java30 void onError(String utteranceId); method in interface:TextToSpeechICSMR1.UtteranceProgressListenerICSMR1
54 public void onError(String utteranceId) {
55 listener.onError(utteranceId);
/frameworks/base/core/java/android/service/trust/
H A DTrustAgentService.java133 onError("calling onSetTrustAgentFeaturesEnabledCompleted()");
198 private void onError(String msg) { method in class:TrustAgentService
246 onError("calling enableTrust()");
273 onError("calling revokeTrust()");
295 onError("calling setManagingTrust()");
345 onError("calling setManagingTrust()");
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraDevice.java449 * An error code that can be reported by {@link #onError}
456 * @see #onError
461 * An error code that can be reported by {@link #onError}
475 * @see #onError
480 * An error code that can be reported by {@link #onError}
485 * @see #onError
490 * An error code that can be reported by {@link #onError}
495 * @see #onError
500 * An error code that can be reported by {@link #onError}
510 * @see #onError
596 public abstract void onError(CameraDevice camera, int error); // Must implement method in class:CameraDevice.StateCallback
[all...]
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCameraDeviceState.java73 void onError(int errorCode, RequestHolder holder); method in interface:CameraDeviceState.CameraDeviceStateListener
86 * {@code ERROR} state, {@link CameraDeviceStateListener#onError(int, RequestHolder)} will be
182 mCurrentListener.onError(captureError, request);
242 mCurrentListener.onError(mCurrentError, mCurrentRequest);
302 mCurrentListener.onError(error, mCurrentRequest);
/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/opt/net/voip/src/java/android/net/sip/
H A DSipSessionAdapter.java53 public void onError(ISipSession session, int errorCode, String message) { method in class:SipSessionAdapter
H A DISipSessionListener.aidl90 void onError(in ISipSession session, int errorCode, String errorMessage);

Completed in 4465 milliseconds

1234