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

12345

/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
28 super(error);
/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.
27 public SQLiteException(String error) { argument
28 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 DSQLiteUnfinalizedObjectsException.java28 public SQLiteUnfinalizedObjectsException(String error) { argument
29 super(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/test-runner/tests/src/android/test/suitebuilder/examples/error/
H A DErrorTest.java17 package android.test.suitebuilder.examples.error;
H A DFailingTest.java17 package android.test.suitebuilder.examples.error;
/frameworks/base/core/java/android/app/backup/
H A DRestoreObserver.java71 * @param error Zero on success; a nonzero error code if the restore operation
74 public void restoreFinished(int error) { argument
/frameworks/base/core/java/android/speech/tts/
H A DSynthesisCallback.java26 * {@link #error} can be called at any stage in the synthesis process to
27 * indicate that an error has occurred, but if the call is made after a call
85 public void error(); method in interface:SynthesisCallback
/frameworks/base/media/libstagefright/codecs/aacenc/src/
H A Dchannel_map.c32 Word16 error=0; local
57 error=1;
60 return error;
66 Word16 error; local
67 error = 0;
80 error=4;
83 return error;
93 Word16 error; local
94 error = 0;
120 error
[all...]

Completed in 152 milliseconds

12345