Searched refs:error (Results 51 - 75 of 395) sorted by path

1234567891011>>

/frameworks/base/core/java/android/app/backup/
H A DRestoreObserver.java74 * @param error Zero on success; a nonzero error code if the restore operation
77 public void restoreFinished(int error) { argument
H A DRestoreSession.java49 * @return Zero on success, nonzero on error. The observer's restoreSetsAvailable()
69 * @return Zero on success; nonzero on error. The observer will only receive
98 * @return Zero on success, nonzero on error. The observer will only receive
132 * @return Zero on success; nonzero on error. The observer will only receive
234 public void restoreFinished(int error) { argument
236 mHandler.obtainMessage(MSG_RESTORE_FINISHED, error, 0));
/frameworks/base/core/java/android/bluetooth/le/
H A DBluetoothLeAdvertiser.java272 // Post internal error if registration failed.
357 private void postStartFailure(final AdvertiseCallback callback, final int error) { argument
361 callback.onStartFailure(error);
/frameworks/base/core/java/android/content/
H A DContentResolver.java234 "authentication-error",
235 "io-error",
236 "parse-error",
240 "internal-error",
244 public static String syncErrorToString(int error) { argument
245 if (error < 1 || error > SYNC_ERROR_NAMES.length) {
246 return String.valueOf(error);
248 return SYNC_ERROR_NAMES[error - 1];
252 public static int syncErrorStringToInt(String error) { argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java1237 final String error = validateName(packageName, true);
1238 if (error != null) {
1240 "Invalid manifest package: " + error);
1249 final String error = validateName(splitName, false);
1250 if (error != null) {
1252 "Invalid manifest split: " + error);
5033 public final int error; field in class:PackageParser.PackageParserException
5035 public PackageParserException(int error, String detailMessage) { argument
5037 this.error = error;
5040 PackageParserException(int error, String detailMessage, Throwable throwable) argument
[all...]
/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.java441 throw new RuntimeException("Unknown camera error");
478 * the detailed error code if open fails instead of
483 * @return a detailed errno error code, or {@code NO_ERROR} on success
502 throw new RuntimeException("Unknown camera error");
1810 * Unspecified camera error.
1823 * Callback interface for camera error notification.
1835 * @param error error code:
1842 void onError(int error, Camera camera); argument
1846 * Registers a callback to be invoked when an error occur
[all...]
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraDevice.java123 * a serious error.</p>
371 * encountered a fatal error
399 * encountered a fatal error
449 * An error code that can be reported by {@link #onError}
453 * This error can be produced when opening the camera fails.
461 * An error code that can be reported by {@link #onError}
472 * This error can be produced when opening the camera fails.
480 * An error code that can be reported by {@link #onError}
490 * An error code that can be reported by {@link #onError}
491 * indicating that the camera device has encountered a fatal error
596 onError(CameraDevice camera, int error) argument
[all...]

Completed in 158 milliseconds

1234567891011>>