HomeSort by relevance Sort by last modified time
    Searched refs:db_path (Results 26 - 45 of 45) sorted by null

12

  /external/chromium_org/storage/browser/fileapi/
sandbox_origin_database.cc 75 base::FilePath db_path = GetDatabasePath();
76 if (init_option == FAIL_IF_NONEXISTENT && !base::PathExists(db_path))
79 std::string path = FilePathToString(db_path);
126 bool SandboxOriginDatabase::RepairDatabase(const std::string& db_path) {
132 if (!leveldb::RepairDB(db_path, options).ok() ||
sandbox_directory_database.h 116 bool RepairDatabase(const std::string& db_path);
sandbox_directory_database.cc 775 bool SandboxDirectoryDatabase::RepairDatabase(const std::string& db_path) {
781 if (!leveldb::RepairDB(db_path, options).ok())
  /external/chromium_org/chrome/browser/diagnostics/
sqlite_diagnostics.cc 44 const base::FilePath& db_path)
45 : DiagnosticsTest(id), flags_(flags), db_path_(db_path) {}
  /external/chromium_org/components/precache/core/
precache_database.cc 38 bool PrecacheDatabase::Init(const base::FilePath& db_path) {
45 if (!db_->Open(db_path)) {
precache_database_unittest.cc 65 base::FilePath db_path = scoped_temp_dir_.path().Append( variable
67 precache_database_->Init(db_path);
  /external/chromium_org/extensions/browser/
state_store.cc 68 const base::FilePath& db_path,
70 : db_path_(db_path),
  /external/chromium_org/chrome/utility/importer/
nss_decryptor_mac.h 125 bool Init(const base::FilePath& dll_path, const base::FilePath& db_path);
nss_decryptor_system_nss.cc 28 const base::FilePath& db_path) {
35 db_path.value().c_str());
  /external/chromium_org/components/password_manager/core/browser/
login_database.h 31 bool Init(const base::FilePath& db_path);
login_database.cc 128 bool LoginDatabase::Init(const base::FilePath& db_path) {
135 if (!db_.Open(db_path)) {
163 db_path_ = db_path;
  /external/chromium_org/chrome/browser/history/
top_sites_database.cc 200 void RecoverDatabaseOrRaze(sql::Connection* db, const base::FilePath& db_path) {
211 base::GetFileSize(db_path, &original_size);
213 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(db, db_path);
299 base::GetFileSize(db_path, &final_size) &&
315 const base::FilePath& db_path,
326 RecoverDatabaseOrRaze(db, db_path);
thumbnail_database.cc 393 void RecoverDatabaseOrRaze(sql::Connection* db, const base::FilePath& db_path) {
407 base::GetFileSize(db_path, &original_size);
409 scoped_ptr<sql::Recovery> recovery = sql::Recovery::Begin(db, db_path);
522 base::GetFileSize(db_path, &final_size) &&
543 const base::FilePath& db_path,
561 RecoverDatabaseOrRaze(db, db_path);
    [all...]
thumbnail_database_unittest.cc 51 // Create the test database at |db_path| from the golden file at
53 WARN_UNUSED_RESULT bool CreateDatabaseFromSQL(const base::FilePath &db_path,
59 return sql::test::CreateDatabaseFromSQL(db_path, sql_path);
1017 base::FilePath db_path = file_name_.DirName().Append(db_base_name); local
    [all...]
top_sites_database_unittest.cc 34 // Create the test database at |db_path| from the golden file at
36 WARN_UNUSED_RESULT bool CreateDatabaseFromSQL(const base::FilePath &db_path,
42 return sql::test::CreateDatabaseFromSQL(db_path, sql_path);
  /external/chromium_org/content/browser/media/
webrtc_identity_store_unittest.cc 365 base::FilePath db_path = local
367 EXPECT_TRUE(sql::test::CorruptSizeInHeader(db_path));
375 EXPECT_TRUE(db->Open(db_path));
  /external/chromium_org/components/enhanced_bookmarks/
persistent_image_store.cc 39 const base::FilePath& db_path) {
50 if (!db.Open(db_path))
  /external/chromium_org/components/dom_distiller/standalone/
content_extractor.cc 69 const base::FilePath& db_path) {
80 db.PassAs<leveldb_proto::ProtoDatabase<ArticleEntry> >(), db_path));
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_change_tracker.cc 58 SyncStatusCode Repair(const std::string& db_path);
506 const std::string& db_path) {
512 if (leveldb::RepairDB(db_path, options).ok() &&
  /external/chromium_org/extensions/browser/value_store/
leveldb_value_store.cc 50 LeveldbValueStore::LeveldbValueStore(const base::FilePath& db_path)
51 : db_path_(db_path) {

Completed in 928 milliseconds

12