/frameworks/base/core/java/android/database/ |
H A D | SQLException.java | 20 * 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 D | SQLiteException.java | 22 * 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 D | SQLiteAbortException.java | 27 public SQLiteAbortException(String error) { argument 28 super(error);
|
H A D | SQLiteAccessPermException.java | 26 public SQLiteAccessPermException(String error) { argument 27 super(error);
|
H A D | SQLiteBindOrColumnIndexOutOfRangeException.java | 25 public SQLiteBindOrColumnIndexOutOfRangeException(String error) { argument 26 super(error);
|
H A D | SQLiteBlobTooBigException.java | 22 public SQLiteBlobTooBigException(String error) { argument 23 super(error);
|
H A D | SQLiteCantOpenDatabaseException.java | 22 public SQLiteCantOpenDatabaseException(String error) { argument 23 super(error);
|
H A D | SQLiteConstraintException.java | 25 public SQLiteConstraintException(String error) { argument 26 super(error);
|
H A D | SQLiteDatabaseCorruptException.java | 25 public SQLiteDatabaseCorruptException(String error) { argument 26 super(error);
|
H A D | SQLiteDatabaseLockedException.java | 30 public SQLiteDatabaseLockedException(String error) { argument 31 super(error);
|
H A D | SQLiteDatatypeMismatchException.java | 22 public SQLiteDatatypeMismatchException(String error) { argument 23 super(error);
|
H A D | SQLiteDiskIOException.java | 20 * An exception that indicates that an IO error occured while accessing the 26 public SQLiteDiskIOException(String error) { argument 27 super(error);
|
H A D | SQLiteDoneException.java | 28 public SQLiteDoneException(String error) { argument 29 super(error);
|
H A D | SQLiteFullException.java | 25 public SQLiteFullException(String error) { argument 26 super(error);
|
H A D | SQLiteMisuseException.java | 20 * 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 D | SQLiteOutOfMemoryException.java | 22 public SQLiteOutOfMemoryException(String error) { argument 23 super(error);
|
H A D | SQLiteReadOnlyDatabaseException.java | 22 public SQLiteReadOnlyDatabaseException(String error) { argument 23 super(error);
|
H A D | SQLiteTableLockedException.java | 22 public SQLiteTableLockedException(String error) { argument 23 super(error);
|
/frameworks/base/opengl/java/android/opengl/ |
H A D | GLException.java | 25 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 D | SslError.java | 52 * 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/volley/src/main/java/com/android/volley/ |
H A D | Response.java | 32 /** 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...] |
/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | PackageManagerException.java | 26 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 throw new PackageManagerException(e.error, e.getMessage(), e.getCause());
|
/frameworks/base/cmds/uiautomator/library/ |
H A D | Android.mk | 82 -error 7 -error 8 -error 9 -error 10 -error 11 -error 12 -error 13 -error 14 -error 15 \ 83 -error 1 [all...] |
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/ |
H A D | Preconditions.java | 23 public static void check(boolean value, String error, Object... args) { argument 25 L.e(error, args); 29 public static void checkNotNull(Object value, String error, Object... args) { argument 31 L.e(error, args); 35 public static void checkNull(Object value, String error, Object... args) { argument 37 L.e(error, args);
|
/frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/ |
H A D | CompilationResult.java | 29 public final String error; field in class:CompilationResult 31 public CompilationResult(int resultCode, String output, String error) { argument 34 this.error = error; 42 return resultCode != 0 && error.indexOf(text) > 0; 46 List<ScopedException> errors = ScopedException.extractErrors(error); 50 assertEquals(error, 1, errors.size()); 55 return ScopedException.extractErrors(error);
|