/frameworks/base/core/java/android/database/sqlite/ |
D | SqliteWrapper.java | 24 import android.database.sqlite.SQLiteException; 43 private static boolean isLowMemory(SQLiteException e) { in isLowMemory() 47 public static void checkSQLiteException(Context context, SQLiteException e) { in checkSQLiteException() 60 } catch (SQLiteException e) { in query() 70 } catch (SQLiteException e) { in requery() 80 } catch (SQLiteException e) { in update() 91 } catch (SQLiteException e) { in delete() 102 } catch (SQLiteException e) { in insert()
|
D | SQLiteException.java | 24 public class SQLiteException extends SQLException { class 25 public SQLiteException() { in SQLiteException() method in SQLiteException 28 public SQLiteException(String error) { in SQLiteException() method in SQLiteException 32 public SQLiteException(String error, Throwable cause) { in SQLiteException() method in SQLiteException
|
D | SQLiteConstraintException.java | 22 public class SQLiteConstraintException extends SQLiteException {
|
D | SQLiteBlobTooBigException.java | 19 public class SQLiteBlobTooBigException extends SQLiteException {
|
D | SQLiteMisuseException.java | 31 public class SQLiteMisuseException extends SQLiteException {
|
D | SQLiteDatabaseCorruptException.java | 22 public class SQLiteDatabaseCorruptException extends SQLiteException {
|
D | SQLiteDoneException.java | 25 public class SQLiteDoneException extends SQLiteException {
|
D | SQLiteBindOrColumnIndexOutOfRangeException.java | 22 public class SQLiteBindOrColumnIndexOutOfRangeException extends SQLiteException {
|
D | SQLiteAbortException.java | 24 public class SQLiteAbortException extends SQLiteException {
|
D | SQLiteReadOnlyDatabaseException.java | 19 public class SQLiteReadOnlyDatabaseException extends SQLiteException {
|
D | SQLiteOutOfMemoryException.java | 19 public class SQLiteOutOfMemoryException extends SQLiteException {
|
D | SQLiteAccessPermException.java | 23 public class SQLiteAccessPermException extends SQLiteException {
|
D | SQLiteFullException.java | 22 public class SQLiteFullException extends SQLiteException {
|
D | SQLiteDiskIOException.java | 23 public class SQLiteDiskIOException extends SQLiteException {
|
D | SQLiteDatatypeMismatchException.java | 19 public class SQLiteDatatypeMismatchException extends SQLiteException {
|
D | SQLiteTableLockedException.java | 19 public class SQLiteTableLockedException extends SQLiteException {
|
D | SQLiteCantOpenDatabaseException.java | 19 public class SQLiteCantOpenDatabaseException extends SQLiteException {
|
D | SQLiteDatabaseLockedException.java | 27 public class SQLiteDatabaseLockedException extends SQLiteException {
|
/frameworks/opt/telephony/src/java/com/google/android/mms/util/ |
D | SqliteWrapper.java | 25 import android.database.sqlite.SQLiteException; 55 private static boolean isLowMemory(SQLiteException e) { in isLowMemory() 59 public static void checkSQLiteException(Context context, SQLiteException e) { in checkSQLiteException() 72 } catch (SQLiteException e) { in query() 82 } catch (SQLiteException e) { in requery() 92 } catch (SQLiteException e) { in update() 103 } catch (SQLiteException e) { in delete() 114 } catch (SQLiteException e) { in insert()
|
/frameworks/base/core/java/android/database/ |
D | DefaultDatabaseErrorHandler.java | 22 import android.database.sqlite.SQLiteException; 74 } catch (SQLiteException e) { in onCorruption() 79 } catch (SQLiteException e) { in onCorruption()
|
/frameworks/base/core/tests/coretests/src/android/database/ |
D | DatabaseErrorHandlerTest.java | 22 import android.database.sqlite.SQLiteException; 87 } catch (SQLiteException e) { in testDatabaseIsCorrupt() 110 } catch (SQLiteException e) { in onCorruption()
|
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/ |
D | ForeignKeyTest.java | 29 import android.database.sqlite.SQLiteException; 221 assertThat(t, instanceOf(SQLiteException.class)); in simpleForeignKeyFailure() 233 assertThat(t, instanceOf(SQLiteException.class)); in simpleForeignKeyDeferredFailure() 252 assertThat(t, instanceOf(SQLiteException.class)); in immediateForeignKeyFailure() 280 assertThat(t, instanceOf(SQLiteException.class)); in onDelete_noAction() 296 assertThat(t, instanceOf(SQLiteException.class)); in onDelete_noAction_withTransaction() 311 assertThat(t, instanceOf(SQLiteException.class)); in onDelete_noAction_deferred()
|
D | CustomDatabaseTest.java | 26 import android.database.sqlite.SQLiteException; 97 } catch (IllegalStateException | SQLiteException e) { in create()
|
/frameworks/support/persistence/db/src/main/java/androidx/sqlite/db/ |
D | SupportSQLiteOpenHelper.java | 21 import android.database.sqlite.SQLiteException; 201 throw new SQLiteException("Can't downgrade database from version " in onDowngrade() 251 } catch (SQLiteException e) { in onCorruption()
|
/frameworks/support/tv-provider/src/main/java/androidx/tvprovider/media/tv/ |
D | ChannelLogoUtils.java | 21 import android.database.sqlite.SQLiteException; 132 } catch (SQLiteException | IOException e) { in storeChannelLogo()
|