Searched refs:error (Results 1 - 25 of 307) sorted by relevance

1234567891011>>

/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 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 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);
/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/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/testing/uiautomator/library/
H A DAndroid.mk77 -error 7 -error 8 -error 9 -error 10 -error 11 -error 12 -error 13 -error 14 -error 15 \
78 -error 1
[all...]
/frameworks/support/volley/src/com/android/volley/
H A DResponse.java32 /** Callback interface for delivering error responses. */
35 * Callback method that an error has been occurred with the
36 * provided error code and optional user-readable message.
38 public void onErrorResponse(VolleyError error); argument
47 * Returns a failed response containing the given error code and an optional
50 public static <T> Response<T> error(VolleyError error) { argument
51 return new Response<T>(error);
54 /** Parsed response, or null in the case of error. */
57 /** Cache metadata for this response, or null in the case of error
61 public final VolleyError error; field in class:Response
80 Response(VolleyError error) argument
[all...]
H A DRetryPolicy.java36 * @param error The error code of the last attempt.
38 * ran out of attempts), the passed in error is thrown.
40 public void retry(VolleyError error) throws VolleyError; argument
/frameworks/native/opengl/libagl/
H A Dstate.h35 void _ogles_error(ogles_context_t* c, GLenum error);
42 #define ogles_error(c, error) \
45 _ogles_error(c, error); \
48 #define ogles_error(c, error) _ogles_error((c), (error))
/frameworks/av/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 171 milliseconds

1234567891011>>