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

  /external/chromium/chrome/browser/history/
archived_database.cc 102 int cur_version = meta_table_.GetVersionNumber(); local
103 if (cur_version == 1) {
108 ++cur_version;
109 meta_table_.SetVersionNumber(cur_version);
111 std::min(cur_version, kCompatibleVersionNumber));
114 if (cur_version == 2) {
116 ++cur_version;
117 meta_table_.SetVersionNumber(cur_version);
124 LOG_IF(WARNING, cur_version < kCurrentVersionNumber) <<
125 "Archived database version " << cur_version << " is too old to handle."
    [all...]
history_database.cc 262 int cur_version = meta_table_.GetVersionNumber(); local
266 if (cur_version == 15) {
272 ++cur_version;
273 meta_table_.SetVersionNumber(cur_version);
275 std::min(cur_version, kCompatibleVersionNumber));
278 if (cur_version == 16) {
288 ++cur_version;
289 meta_table_.SetVersionNumber(cur_version);
292 if (cur_version == 17) {
295 ++cur_version;
    [all...]
thumbnail_database.cc 96 int cur_version = meta_table_.GetVersionNumber(); local
97 if (cur_version == 2) {
103 ++cur_version;
106 if (cur_version == 3) {
112 ++cur_version;
115 LOG_IF(WARNING, cur_version < kCurrentVersionNumber) <<
116 "Thumbnail database version " << cur_version << " is too old to handle.";
history_backend_unittest.cc 806 int cur_version = HistoryDatabase::GetCurrentVersion(); local
813 EXPECT_EQ(cur_version, file_version);
    [all...]
history_unittest.cc 776 int cur_version = HistoryDatabase::GetCurrentVersion(); local
786 EXPECT_EQ(cur_version, file_version);
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store.cc 297 int cur_version = meta_table_.GetVersionNumber(); local
298 if (cur_version == 2) {
308 ++cur_version;
309 meta_table_.SetVersionNumber(cur_version);
311 std::min(cur_version, kCompatibleVersionNumber));
315 if (cur_version == 3) {
344 ++cur_version;
345 meta_table_.SetVersionNumber(cur_version);
353 LOG_IF(WARNING, cur_version < kCurrentVersionNumber) <<
354 "Cookie database version " << cur_version << " is too old to handle."
    [all...]
  /external/qemu/target-i386/
hax-interface.h 336 uint32_t cur_version; member in struct:hax_module_version
343 uint32_t cur_version; member in struct:hax_qemu_version

Completed in 518 milliseconds