/libcore/luni/src/test/java/libcore/sqlite/ |
OldJDBCDriverFunctionalTest.java | 28 private File dbFile = null; 33 dbFile.delete(); 42 dbFile = File.createTempFile("JDBCDriverFunctionalTest", ".db", tmpDir); 46 dbFile.deleteOnExit(); 51 connectionURL = "jdbc:sqlite:/" + dbFile.getPath();
|
OldSQLiteTest.java | 30 public static File dbFile = null; 37 dbFile = File.createTempFile("sqliteTest", ".db", tmpDir); 38 dbFile.deleteOnExit(); 45 if (!dbFile.exists()) { 48 conn = DriverManager.getConnection("jdbc:sqlite:/" + dbFile.getPath());
|
OldExceptionTest.java | 33 db.open(dbFile.getName(), 0);
|
OldBlobTest.java | 40 db.open(dbFile.getPath(), 0); 86 Blob blob = db.open_blob(dbFile.getPath(), "B", "val", 1, true);
|
OldDatabaseTest.java | 83 db.open(dbFile.getPath(), 0); 92 System.err.println("Error closing DB " + dbFile.getPath()); 104 db2.open(dbFile.getPath(), 0); 106 db.open(dbFile.getPath(), 0); 108 db2.open(dbFile.getPath(), 0); 114 db.open(dbFile.getPath(), 0); 117 db2.open(dbFile.getPath(), 0); 118 db2.open(dbFile.getPath(), 0); 155 db.open(dbFile.getPath(),0); 175 db.open(dbFile.getPath(), 0) [all...] |
OldFunctionContextTest.java | 37 db.open(dbFile.getPath(), 0);
|
OldStmtTest.java | 80 db.open(dbFile.getPath(), 0);
|
/libcore/luni/src/test/java/libcore/java/sql/ |
OldSQLTest.java | 35 protected File dbFile; 41 dbFile = File.createTempFile("sqliteTest", ".db", tmpDir); 42 dbFile.deleteOnExit(); 48 conn = DriverManager.getConnection("jdbc:sqlite:/" + dbFile.getPath());
|
OldConnectionTest.java | [all...] |
/libcore/luni/src/test/java/tests/support/ |
Support_SQL.java | 47 private static File dbFile = null; 59 dbFile = File.createTempFile("sqliteTest", ".db", tmpDir); 60 dbFile.deleteOnExit(); 67 sqlUrl = "jdbc:sqlite:/" + dbFile.getPath(); 116 return dbFile.getPath();
|
/cts/tests/tests/database/src/android/database/sqlite/cts/ |
SQLiteDatabaseTest.java | 103 File dbFile = new File(mDatabaseDir, "database_test12345678.db"); 104 dbFile.delete(); 105 assertFalse(dbFile.exists()); 106 db = SQLiteDatabase.openOrCreateDatabase(dbFile.getPath(), factory); 109 dbFile.delete(); 111 dbFile = new File(mDatabaseDir, DATABASE_FILE_NAME); 112 db = SQLiteDatabase.openOrCreateDatabase(dbFile, factory); 115 dbFile.delete(); 123 File dbFile = new File(mDatabaseDir, "database_test12345678.db"); 124 File journalFile = new File(dbFile.getPath() + "-journal") [all...] |
/packages/apps/Email/tests/src/com/android/email/provider/ |
ProviderTests.java | [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
LauncherProvider.java | 245 final File dbFile = new File(db.getPath()); 247 if (dbFile.exists()) { 248 SQLiteDatabase.deleteDatabase(dbFile); [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
LauncherProvider.java | 346 final File dbFile = new File(db.getPath()); 348 if (dbFile.exists()) { 349 SQLiteDatabase.deleteDatabase(dbFile); [all...] |
/frameworks/base/services/java/com/android/server/accounts/ |
AccountManagerService.java | 446 File dbFile = new File(getDatabaseName(userId)); 447 dbFile.delete(); 453 File dbFile = new File(getDatabaseName(userId)); 454 dbFile.delete(); [all...] |
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaProvider.java | [all...] |
/external/robolectric/lib/main/ |
sqlite-jdbc-3.7.2.jar | |
/prebuilts/tools/common/m2/internal/com/google/code/findbugs/findbugs/2.0.1/ |
findbugs-2.0.1.jar | |