Searched defs:error (Results 51 - 75 of 293) sorted by path

1234567891011>>

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDiskIOException.java20 * An exception that indicates that an IO error occured while accessing the
26 public SQLiteDiskIOException(String error) { argument
27 super(error);
H A DSQLiteDoneException.java28 public SQLiteDoneException(String error) { argument
29 super(error);
H A DSQLiteException.java22 * A SQLite exception that indicates there was an error with SQL parsing or execution.
28 public SQLiteException(String error) { argument
29 super(error);
32 public SQLiteException(String error, Throwable cause) { argument
33 super(error, cause);
H A DSQLiteFullException.java25 public SQLiteFullException(String error) { argument
26 super(error);
H A DSQLiteMisuseException.java20 * This error can occur if the application creates a SQLiteStatement object and allows multiple
22 * Sqlite returns this error if bind and execute methods on this object occur at the same time
34 public SQLiteMisuseException(String error) { argument
35 super(error);
H A DSQLiteOutOfMemoryException.java22 public SQLiteOutOfMemoryException(String error) { argument
23 super(error);
H A DSQLiteReadOnlyDatabaseException.java22 public SQLiteReadOnlyDatabaseException(String error) { argument
23 super(error);
H A DSQLiteTableLockedException.java22 public SQLiteTableLockedException(String error) { argument
23 super(error);
/frameworks/base/core/java/android/hardware/
H A DCamera.java457 throw new RuntimeException("Unknown camera error");
492 * the detailed error code if open fails instead of
497 * @return a detailed errno error code, or {@code NO_ERROR} on success
515 throw new RuntimeException("Unknown camera error");
1826 * Unspecified camera error.
1845 * Callback interface for camera error notification.
1857 * @param error error code:
1864 void onError(int error, Camera camera); argument
1868 * Registers a callback to be invoked when an error occur
[all...]
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraDevice.java160 * a serious error.</p>
428 * encountered a fatal error
610 * encountered a fatal error
709 * encountered a fatal error
786 * encountered a fatal error
822 * encountered a fatal error
855 * encountered a fatal error
905 * An error code that can be reported by {@link #onError}
909 * This error can be produced when opening the camera fails due to the camera
918 * An error cod
1064 onError(@onNull CameraDevice camera, @ErrorCode int error) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCallbackProxies.java60 public void onError(CameraDevice camera, int error) { argument
61 mProxy.invoke("onError", camera, error);
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCameraDeviceState.java65 * error has occurred.
91 * @param error the error to set. Should be one of the error codes defined in
94 public synchronized void setError(int error) { argument
95 mCurrentError = error;
107 * @return {@code false} if an error has occurred.
122 * @return {@code false} if an error has occurred.
139 * @param captureError Report a recoverable error for a single request using a valid
140 * error cod
236 doStateTransition(int newState, final long timestamp, final int error) argument
[all...]
/frameworks/base/core/java/android/net/
H A DConnectivityManager.java340 * failed. Use {@link #getLastTetherError} to find the error code
1486 /** An error occurred. */
1487 public void onError(int error) {} argument
1497 * {@code onStarted} method will be called. If an error occurs, {@code onError} will be called,
1501 * the operation was successfull or {@code onError} if an error occurred.
1532 /** The hardware returned an error. */
1570 int error = message.arg2;
1572 if (error == SUCCESS) {
1583 mCallback.onError(error);
1586 Log.e(TAG, "Exception in keepalive callback(" + error
[all...]
/frameworks/base/core/java/android/net/http/
H A DSslError.java52 * A generic error occurred
62 // Update if you add a new SSL error!!!
67 * The SSL error set bitfield (each individual error is a bit index;
73 * The SSL certificate associated with the error set
78 * The URL associated with the error set.
83 * Creates a new SslError object using the supplied error and certificate.
85 * @param error The SSL error
90 public SslError(int error, SslCertificat argument
102 SslError(int error, X509Certificate certificate) argument
113 SslError(int error, SslCertificate certificate, String url) argument
128 SslError(int error, X509Certificate certificate, String url) argument
139 SslErrorFromChromiumErrorCode( int error, SslCertificate cert, String url) argument
176 addError(int error) argument
190 hasError(int error) argument
[all...]
/frameworks/base/core/java/android/print/
H A DPrintDocumentAdapter.java140 * LayoutResultCallback#onLayoutFailed(CharSequence)}, if an error occurred;
198 * CharSequence)}, if an error occurred; or {@link WriteResultCallback#onWriteCancelled()},
278 * Notifies that an error occurred while writing the data.
280 * @param error The <strong>localized</strong> error message.
281 * shown to the user. May be <code>null</code> if error is unknown.
283 public void onWriteFailed(CharSequence error) { argument
322 * Notifies that an error occurred while laying out the document.
324 * @param error The <strong>localized</strong> error messag
327 onLayoutFailed(CharSequence error) argument
[all...]
H A DPrintManager.java1151 public void onLayoutFailed(CharSequence error) { argument
1166 callback.onLayoutFailed(error, mSequence);
1254 public void onWriteFailed(CharSequence error) { argument
1269 callback.onWriteFailed(error, mSequence);
/frameworks/base/core/java/android/printservice/
H A DPrintJob.java176 * not successfully printed due to an error. This is a final state.
271 * @param error The human readable, short, and translated reason
280 public boolean fail(@Nullable String error) { argument
283 return setState(PrintJobInfo.STATE_FAILED, error);
465 private boolean setState(int state, @Nullable String error) { argument
467 if (mPrintServiceClient.setPrintJobState(mCachedInfo.getId(), state, error)) {
472 mCachedInfo.setStatus(error);
/frameworks/base/core/java/android/speech/
H A DRecognitionListener.java62 * A network or recognition error occurred.
64 * @param error code is defined in {@link SpeechRecognizer}
66 void onError(int error); argument
H A DRecognitionService.java172 * @param listener to send the error message to in case of error
268 * The service should call this method when a network or recognition error occurred.
270 * @param error code is defined in {@link SpeechRecognizer}
272 public void error(int error) throws RemoteException { argument
274 mListener.onError(error);
H A DSpeechRecognizer.java86 /** Audio recording error. */
89 /** Server sends error status. */
483 public void onError(final int error) { argument
484 Message.obtain(mInternalHandler, MSG_ERROR, error).sendToTarget();
/frameworks/base/core/java/android/speech/tts/
H A DFileSynthesisCallback.java209 // This is not an error that would prevent synthesis. Hence no
254 public void error() { method in class:FileSynthesisCallback
255 error(TextToSpeech.ERROR_SYNTHESIS);
259 public void error(int errorCode) { method in class:FileSynthesisCallback
260 if (DBG) Log.d(TAG, "FileSynthesisRequest.error()");
H A DPlaybackSynthesisCallback.java93 // This happens when stop() or error() were called before start() was.
222 // Not an error that would prevent synthesis. Hence no
249 // Signal done or error to item
260 public void error() { method in class:PlaybackSynthesisCallback
261 error(TextToSpeech.ERROR_SYNTHESIS);
265 public void error(int errorCode) { method in class:PlaybackSynthesisCallback
266 if (DBG) Log.d(TAG, "error() [will call stop]");
H A DSynthesisCallback.java32 * {@link #error} can be called at any stage in the synthesis process to
33 * indicate that an error has occurred, but if the call is made after a call
100 * <p>This method has to be called if {@link #start} and/or {@link #error} was called.
113 void error(); method in interface:SynthesisCallback
124 void error(@TextToSpeech.Error int errorCode); method in interface:SynthesisCallback
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java60 * made immutable and calling a state mutation method generates an error.
2511 * Sets the error text of this node.
2518 * @param error The error text.
2522 public void setError(CharSequence error) { argument
2524 mError = (error == null) ? null : error.subSequence(0, error.length());
2528 * Gets the error text of this node.
2530 * @return The error tex
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewClient.java207 /** Generic error */
231 /** Generic file error */
241 * Report an error to the host application. These errors are unrecoverable
245 * @param errorCode The error code corresponding to an ERROR_* value.
246 * @param description A String describing the error.
257 * Report web resource loading error to the host application. These errors usually indicate
263 * @param error Information about the error occured.
265 public void onReceivedError(WebView view, WebResourceRequest request, WebResourceError error) { argument
268 error
324 onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) argument
[all...]

Completed in 4811 milliseconds

1234567891011>>