Searched defs:db_path (Results 1 - 10 of 10) sorted by relevance

/external/chromium/chrome/browser/history/
H A Dhistory_unittest_base.cc18 const FilePath& db_path) {
32 ASSERT_TRUE(connection.Open(db_path));
17 ExecuteSQLScript(const FilePath& sql_path, const FilePath& db_path) argument
/external/chromium/chrome/browser/importer/
H A Dnss_decryptor_null.h26 bool Init(const FilePath& dll_path, const FilePath& db_path) { return false; } argument
H A Dfirefox_importer_unittest_utils.h29 // -> Msg_Decryptor_Init(dll_path, db_path)
41 bool DecryptorInit(const FilePath& dll_path, const FilePath& db_path);
76 const FilePath& db_path) {
77 return decryptor_.Init(dll_path, db_path);
75 DecryptorInit(const FilePath& dll_path, const FilePath& db_path) argument
H A Dfirefox_importer_unittest.cc29 FilePath db_path; local
30 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &db_path));
31 db_path = db_path.AppendASCII("firefox2_profile");
36 EXPECT_TRUE(decryptor_proxy.DecryptorInit(nss_path, db_path));
54 FilePath db_path; local
55 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &db_path));
56 db_path = db_path.AppendASCII("firefox3_profile");
61 EXPECT_TRUE(decryptor_proxy.DecryptorInit(nss_path, db_path));
[all...]
H A Dnss_decryptor_win.cc40 bool NSSDecryptor::Init(const FilePath& dll_path, const FilePath& db_path) { argument
89 return InitNSS(db_path, plds4_dll, nspr4_dll);
105 bool NSSDecryptor::InitNSS(const FilePath& db_path, argument
144 SECStatus result = NSS_Init(base::SysWideToNativeMB(db_path.value()).c_str());
H A Dnss_decryptor_system_nss.cc27 bool NSSDecryptor::Init(const FilePath& dll_path, const FilePath& db_path) { argument
32 "flags=readOnly", db_path.value().c_str());
H A Dfirefox_importer_unittest_utils_mac.cc188 const FilePath& db_path) {
189 channel_->Send(new Msg_Decryptor_Init(dll_path, db_path));
221 void OnDecryptor_Init(FilePath dll_path, FilePath db_path) { argument
222 bool ret = decryptor_.Init(dll_path, db_path);
187 DecryptorInit(const FilePath& dll_path, const FilePath& db_path) argument
/external/chromium/chrome/browser/password_manager/
H A Dlogin_database.cc51 bool LoginDatabase::Init(const FilePath& db_path) { argument
57 if (!db_.Open(db_path)) {
85 db_path_ = db_path;
/external/chromium/chrome/browser/sync/syncable/
H A Dsyncable.cc304 Directory::Kernel::Kernel(const FilePath& db_path, argument
307 : db_path(db_path),
387 FilePath db_path(file_path);
388 file_util::AbsolutePath(&db_path);
389 store_ = CreateBackingStore(name, db_path);
399 kernel_ = new Kernel(db_path, name, info);
H A Dsyncable.h755 const FilePath& file_path() const { return kernel_->db_path; }
968 Kernel(const FilePath& db_path, const std::string& name,
976 FilePath const db_path; member in struct:syncable::Directory::Kernel

Completed in 118 milliseconds