OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SQLiteDatabaseCorruptException
(Results
1 - 3
of
3
) sorted by null
/cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteDatabaseCorruptExceptionTest.java
19
import android.database.sqlite.
SQLiteDatabaseCorruptException
;
24
new
SQLiteDatabaseCorruptException
();
26
new
SQLiteDatabaseCorruptException
("error");
SQLiteSecurityTest.java
22
import android.database.sqlite.
SQLiteDatabaseCorruptException
;
29
* With the fix, the last statement in each test case triggers
SQLiteDatabaseCorruptException
with
68
} catch (
SQLiteDatabaseCorruptException
e) {
71
fail("Expecting a
SQLiteDatabaseCorruptException
");
93
} catch (
SQLiteDatabaseCorruptException
e) {
96
fail("Expecting a
SQLiteDatabaseCorruptException
");
136
} catch (
SQLiteDatabaseCorruptException
e) {
139
fail("Expecting a
SQLiteDatabaseCorruptException
");
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowSQLiteConnection.java
16
import android.database.sqlite.
SQLiteDatabaseCorruptException
;
750
case SQLiteConstants.SQLITE_CORRUPT: return new
SQLiteDatabaseCorruptException
(message);
Completed in 80 milliseconds