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

  /external/chromium/chrome/browser/history/
history_unittest_base.h 18 // Executes the sql from the file |sql_path| in the database at |db_path|.
20 // |db_path| is the db file name with full path.
22 const FilePath& db_path);
history_unittest_base.cc 18 const FilePath& db_path) {
32 ASSERT_TRUE(connection.Open(db_path));
  /external/chromium/chrome/browser/importer/
firefox_importer_unittest_utils.h 29 // -> 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);
nss_decryptor_null.h 26 bool Init(const FilePath& dll_path, const FilePath& db_path) { return false; }
nss_decryptor_system_nss.h 29 bool Init(const FilePath& dll_path, const FilePath& db_path);
nss_decryptor_win.cc 40 bool NSSDecryptor::Init(const FilePath& dll_path, const FilePath& db_path) {
89 return InitNSS(db_path, plds4_dll, nspr4_dll);
105 bool NSSDecryptor::InitNSS(const FilePath& db_path,
144 SECStatus result = NSS_Init(base::SysWideToNativeMB(db_path.value()).c_str());
nss_decryptor_win.h 118 // |dll_path| indicates the location of NSS3 DLL files, and |db_path|
120 bool Init(const FilePath& dll_path, const FilePath& db_path);
143 bool InitNSS(const FilePath& db_path,
firefox_importer_unittest.cc 29 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...]
firefox_importer_unittest_utils_mac.cc 188 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) {
222 bool ret = decryptor_.Init(dll_path, db_path);
nss_decryptor_mac.h 123 bool Init(const FilePath& dll_path, const FilePath& db_path);
nss_decryptor_system_nss.cc 27 bool NSSDecryptor::Init(const FilePath& dll_path, const FilePath& db_path) {
32 "flags=readOnly", db_path.value().c_str());
  /external/chromium/chrome/browser/password_manager/
login_database.h 28 bool Init(const FilePath& db_path);
login_database.cc 51 bool LoginDatabase::Init(const FilePath& db_path) {
57 if (!db_.Open(db_path)) {
85 db_path_ = db_path;
  /external/chromium/chrome/browser/sync/syncable/
syncable.h 755 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
    [all...]
syncable.cc 304 Directory::Kernel::Kernel(const FilePath& db_path,
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);
    [all...]

Completed in 114 milliseconds