HomeSort by relevance Sort by last modified time
    Searched defs:db_file (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/chrome/browser/history/
history_database_unittest.cc 19 base::FilePath db_file; local
22 db_file = temp_dir.path().AppendASCII("DropBookmarks.db");
23 sql::Connection::Delete(db_file);
31 base::CopyFile(old_history_path, db_file);
37 ASSERT_EQ(sql::INIT_OK, history_db.Init(db_file));
visit_database_unittest.cc 49 base::FilePath db_file = temp_dir_.path().AppendASCII("VisitTest.db"); local
51 EXPECT_TRUE(db_.Open(db_file));
url_database_unittest.cc 51 base::FilePath db_file = temp_dir_.path().AppendASCII("URLTest.db"); local
53 EXPECT_TRUE(db_.Open(db_file));
  /external/chromium_org/chrome/browser/extensions/activity_log/
database_string_table_unittest.cc 19 base::FilePath db_file = temp_dir_.path().AppendASCII("StringTable.db"); variable
21 ASSERT_TRUE(db_.Open(db_file));
activity_database_unittest.cc 128 ActivityDatabase* OpenDatabase(const base::FilePath& db_file) {
131 activity_db->Init(db_file);
174 base::FilePath db_file; local
176 db_file = temp_dir.path().AppendASCII("ActivityInit.db");
177 base::DeleteFile(db_file, false);
179 ActivityDatabase* activity_db = OpenDatabase(db_file);
183 ASSERT_TRUE(db.Open(db_file));
191 base::FilePath db_file; local
193 db_file = temp_dir.path().AppendASCII("ActivityRecord.db");
194 base::DeleteFile(db_file, false)
210 base::FilePath db_file; local
228 base::FilePath db_file; local
250 base::FilePath db_file; local
272 base::FilePath db_file; local
    [all...]
  /external/chromium_org/content/browser/renderer_host/
database_message_filter.cc 136 base::FilePath db_file = DatabaseUtil::GetFullFilePathForVfsFile( local
138 if (!db_file.empty()) {
143 VfsBackend::OpenFile(db_file,
151 file = VfsBackend::OpenFile(db_file, desired_flags);
191 base::FilePath db_file = local
193 if (!db_file.empty()) {
211 error_code = VfsBackend::DeleteFile(db_file, sync_dir);
234 base::FilePath db_file = local
236 if (!db_file.empty())
237 attributes = VfsBackend::GetFileAttributes(db_file);
248 base::FilePath db_file = local
    [all...]
  /external/chromium_org/content/browser/
database_tracker_unittest.cc 483 base::FilePath db_file(tracker->GetFullDBFilePath(kOriginId, kName));
484 EXPECT_TRUE(base::CreateDirectory(db_file.DirName()));
485 EXPECT_TRUE(EnsureFileOfSize(db_file, 10));
490 EXPECT_TRUE(EnsureFileOfSize(db_file, 100));
511 db_file = tracker->GetFullDBFilePath(kOriginId, kName);
512 EXPECT_TRUE(base::CreateDirectory(db_file.DirName()));
513 EXPECT_TRUE(EnsureFileOfSize(db_file, 100));
537 db_file = tracker->GetFullDBFilePath(kOriginId, kName);
538 EXPECT_TRUE(base::CreateDirectory(db_file.DirName()));
539 EXPECT_TRUE(EnsureFileOfSize(db_file, 100))
587 base::FilePath db_file; local
668 base::FilePath db_file; local
    [all...]
  /external/chromium_org/webkit/browser/database/
database_tracker.cc 358 base::FilePath db_file = GetFullDBFilePath(origin_identifier, database_name); local
359 if (!sql::Connection::Delete(db_file))
693 base::FilePath db_file = GetFullDBFilePath(*ori, db->database_name); local
695 base::GetFileInfo(db_file, &file_info);

Completed in 653 milliseconds