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

  /external/chromium_org/chrome/browser/history/
history_database_unittest.cc 36 HistoryDatabase history_db; local
37 ASSERT_EQ(sql::INIT_OK, history_db.Init(db_file));
39 ASSERT_TRUE(history_db.InitURLEnumeratorForEverything(&url_enumerator));
in_memory_url_index.h 203 // Rebuilds the history index from the history database in |history_db|.
205 void RebuildFromHistory(HistoryDatabase* history_db);
url_index_private_data.h 118 // database in |history_db|. Returns the new URLIndexPrivateData which on
123 HistoryDatabase* history_db,
251 // |history_db| is not NULL then this function uses the history database
253 // only be used on the historyDB thread. If |history_db| is NULL, then
257 bool IndexRow(HistoryDatabase* history_db,
in_memory_url_index.cc 311 void InMemoryURLIndex::RebuildFromHistory(HistoryDatabase* history_db) {
312 private_data_ = URLIndexPrivateData::RebuildFromHistory(history_db,
url_index_private_data.cc 436 HistoryDatabase* history_db,
439 if (!history_db)
447 if (!history_db->InitURLEnumeratorForSignificant(&history_enum))
451 rebuilt_data->IndexRow(history_db, NULL, row, languages,
697 HistoryDatabase* history_db,
733 if (history_db) {
741 if (history_db->GetMostRecentVisitsForURL(row_id,
    [all...]
  /external/chromium_org/chrome/browser/history/android/
android_urls_sql_handler.h 17 explicit AndroidURLsSQLHandler(HistoryDatabase* history_db);
urls_sql_handler.h 17 explicit UrlsSQLHandler(HistoryDatabase* history_db);
android_cache_database_unittest.cc 46 HistoryDatabase history_db; local
51 ASSERT_EQ(sql::INIT_OK, history_db.Init(history_db_name));
53 history_db.BeginTransaction();
54 history_db.BeginTransaction();
55 history_db.BeginTransaction();
56 int transaction_nesting = history_db.transaction_nesting();
58 history_db.InitAndroidCacheDatabase(android_cache_db_name));
60 EXPECT_EQ(transaction_nesting, history_db.transaction_nesting());
visit_sql_handler.h 21 explicit VisitSQLHandler(HistoryDatabase* history_db);
android_urls_sql_handler.cc 20 AndroidURLsSQLHandler::AndroidURLsSQLHandler(HistoryDatabase* history_db)
22 history_db_(history_db) {
visit_sql_handler.cc 23 VisitSQLHandler::VisitSQLHandler(HistoryDatabase* history_db)
25 history_db_(history_db) {
urls_sql_handler.cc 22 UrlsSQLHandler::UrlsSQLHandler(HistoryDatabase* history_db)
24 history_db_(history_db) {
android_provider_backend.h 49 HistoryDatabase* history_db,
174 ScopedTransaction(HistoryDatabase* history_db,
android_provider_backend.cc 120 HistoryDatabase* history_db,
125 db_(&history_db->GetDB()),
126 history_db_(history_db),
234 HistoryDatabase* history_db,
236 : history_db_(history_db),
    [all...]
android_provider_backend_unittest.cc 1951 HistoryDatabase history_db; local
2022 HistoryDatabase history_db; local
    [all...]
  /external/chromium/chrome/browser/history/
in_memory_url_index.h 111 bool Init(URLDatabase* history_db, const std::string& languages);
115 // index from |history_db|.
116 bool ReloadFromHistory(URLDatabase* history_db, bool clear_cache);
thumbnail_database_unittest.cc 409 HistoryDatabase history_db; local
410 ASSERT_TRUE(history_db.db_.Open(history_db_name_));
411 history_db.BeginTransaction();
417 ASSERT_EQ(sql::INIT_OK, db.Init(thumbnail_db_name_, NULL, &history_db));
in_memory_url_index.cc 151 bool InMemoryURLIndex::Init(history::URLDatabase* history_db,
155 return ReloadFromHistory(history_db, false);
197 bool InMemoryURLIndex::ReloadFromHistory(history::URLDatabase* history_db,
201 if (!history_db)
208 if (!history_db->InitURLEnumeratorForSignificant(&history_enum))
    [all...]

Completed in 1685 milliseconds