Searched defs:error (Results 201 - 225 of 293) sorted by last modified time

1234567891011>>

/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerFunctionalTest.java69 * Verifies a particular error code was received from a download
72 * @param error The error code expected
75 public void doErrorTest(Uri uri, int error) throws Exception { argument
88 verifyInt(cursor, DownloadManager.COLUMN_REASON, error);
264 * Tests the download failure error after too many redirects (>5).
280 * Tests the download failure error from an unhandled HTTP status code
291 * Tests the download failure error from an unhandled HTTP status code
396 * Tests that we get an error code when the server drops the connection during a download.
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DActivityTestsBase.java108 public void finishBad(String error) { argument
109 finishWithResult(Activity.RESULT_CANCELED, (new Intent()).setAction(error));
113 RuntimeException where = new RuntimeException("Original error was here");
H A DLaunchpadActivity.java448 private void finishBad(String error) { argument
449 finishWithResult(RESULT_CANCELED, (new Intent()).setAction(error));
462 mResultStack = new RuntimeException("Original error was here");
/frameworks/base/core/java/android/database/
H A DSQLException.java20 * An exception that indicates there was an error with SQL parsing or execution.
26 public SQLException(String error) { argument
27 super(error);
30 public SQLException(String error, Throwable cause) { argument
31 super(error, cause);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteAbortException.java27 public SQLiteAbortException(String error) { argument
28 super(error);
H A DSQLiteAccessPermException.java26 public SQLiteAccessPermException(String error) { argument
27 super(error);
H A DSQLiteBindOrColumnIndexOutOfRangeException.java25 public SQLiteBindOrColumnIndexOutOfRangeException(String error) { argument
26 super(error);
H A DSQLiteBlobTooBigException.java22 public SQLiteBlobTooBigException(String error) { argument
23 super(error);
H A DSQLiteCantOpenDatabaseException.java22 public SQLiteCantOpenDatabaseException(String error) { argument
23 super(error);
H A DSQLiteConstraintException.java25 public SQLiteConstraintException(String error) { argument
26 super(error);
H A DSQLiteDatabaseCorruptException.java25 public SQLiteDatabaseCorruptException(String error) { argument
26 super(error);
H A DSQLiteDatabaseLockedException.java30 public SQLiteDatabaseLockedException(String error) { argument
31 super(error);
H A DSQLiteDatatypeMismatchException.java22 public SQLiteDatatypeMismatchException(String error) { argument
23 super(error);
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...]

Completed in 143 milliseconds

1234567891011>>