Searched defs:error (Results 1 - 25 of 310) sorted by relevance

1234567891011>>

/frameworks/native/libs/vr/libdvr/
H A Ddvr_performance.cpp11 int error; local
12 if (auto client = PerformanceClient::Create(&error))
15 return error;
/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 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);
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);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DInflationException.java23 public InflationException(String error) { argument
24 super(error);
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/error/
H A DRunAsPartOfSeparateTest.java16 package android.test.suitebuilder.examples.error;
/frameworks/base/media/java/android/media/
H A DMediaCasException.java29 static void throwExceptionIfNeeded(int error) throws MediaCasException { argument
30 if (error == Status.OK) {
34 if (error == Status.ERROR_CAS_NOT_PROVISIONED) {
36 } else if (error == Status.ERROR_CAS_RESOURCE_BUSY) {
38 } else if (error == Status.ERROR_CAS_DEVICE_REVOKED) {
41 MediaCasStateException.throwExceptionIfNeeded(error);
/frameworks/base/opengl/java/android/opengl/
H A DGLException.java25 public GLException(final int error) { argument
26 super(getErrorString(error));
27 mError = error;
30 public GLException(final int error, final String string) { argument
32 mError = error;
35 private static String getErrorString(int error) { argument
36 String errorString = GLU.gluErrorString(error);
38 errorString = "Unknown error 0x" + Integer.toHexString(error);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DOpenDocumentCallback.java34 * @param error The error.
36 public void onFailure(int error); argument
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerException.java26 public final int error; field in class:PackageManagerException
30 this.error = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
33 public PackageManagerException(int error, String detailMessage) { argument
35 this.error = error;
38 public PackageManagerException(int error, String detailMessage, Throwable throwable) { argument
40 this.error = error;
45 this.error = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
50 throw new PackageManagerException(e.error,
[all...]

Completed in 4225 milliseconds

1234567891011>>