Searched refs:cur_version (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/chrome/browser/history/
H A Dhistory_database.cc298 int cur_version = meta_table_.GetVersionNumber(); local
302 if (cur_version == 15) {
307 ++cur_version;
308 meta_table_.SetVersionNumber(cur_version);
310 std::min(cur_version, kCompatibleVersionNumber));
313 if (cur_version == 16) {
323 ++cur_version;
324 meta_table_.SetVersionNumber(cur_version);
327 if (cur_version == 17) {
330 ++cur_version;
[all...]
H A Dthumbnail_database.cc1208 int cur_version = meta_table_.GetVersionNumber(); local
1218 if (cur_version < 7 && !db_.DoesColumnExist("favicons", "sizes")) {
1226 if (cur_version == 5) {
1227 ++cur_version;
1229 return CantUpgradeToVersion(cur_version);
1232 if (cur_version == 6) {
1233 ++cur_version;
1235 return CantUpgradeToVersion(cur_version);
1238 LOG_IF(WARNING, cur_version < kCurrentVersionNumber) <<
1239 "Thumbnail database version " << cur_version << " i
1262 CantUpgradeToVersion(int cur_version) argument
[all...]
H A Dhistory_unittest.cc322 int cur_version = HistoryDatabase::GetCurrentVersion(); local
323 ASSERT_LT(22, cur_version);
327 EXPECT_EQ(cur_version, s.ColumnInt(0));
403 int cur_version = HistoryDatabase::GetCurrentVersion(); local
404 ASSERT_LT(23, cur_version);
408 EXPECT_EQ(cur_version, s.ColumnInt(0));
493 int cur_version = HistoryDatabase::GetCurrentVersion(); local
494 ASSERT_LE(26, cur_version);
499 EXPECT_EQ(cur_version, s.ColumnInt(0));
555 int cur_version local
620 int cur_version = HistoryDatabase::GetCurrentVersion(); local
704 int cur_version = HistoryDatabase::GetCurrentVersion(); local
[all...]
H A Dthumbnail_database.h259 sql::InitStatus CantUpgradeToVersion(int cur_version);
H A Dhistory_backend_unittest.cc1500 int cur_version = HistoryDatabase::GetCurrentVersion(); local
1507 EXPECT_EQ(cur_version, file_version);
2754 int cur_version = HistoryDatabase::GetCurrentVersion(); local
2761 EXPECT_EQ(cur_version, file_version);
/external/chromium_org/net/extras/sqlite/
H A Dsqlite_channel_id_store.cc276 int cur_version = meta_table_.GetVersionNumber(); local
277 if (cur_version == 1) {
295 ++cur_version;
296 meta_table_.SetVersionNumber(cur_version);
298 std::min(cur_version, kCompatibleVersionNumber));
302 if (cur_version <= 3) {
307 if (cur_version == 2) {
346 if (cur_version == 2) {
375 cur_version = 4;
376 meta_table_.SetVersionNumber(cur_version);
[all...]
/external/chromium_org/net/base/
H A Dnet_util_win.h36 DWORD OpenHandle(DWORD client_version, DWORD* cur_version, T* handle) const { argument
38 DWORD result = open_handle_func(client_version, NULL, cur_version,
H A Dnet_util_win.cc212 DWORD cur_version = 0; local
214 DWORD result = wlanapi.OpenHandle(kMaxClientVersion, &cur_version, &client);
281 DWORD cur_version = 0;
284 kMaxClientVersion, &cur_version, &client_);
H A Dnet_util_unittest.cc829 DWORD cur_version = 0; local
832 kMaxClientVersion, &cur_version, &client);
/external/chromium_org/content/browser/net/
H A Dsqlite_persistent_cookie_store.cc771 int cur_version = meta_table_.GetVersionNumber(); local
772 if (cur_version == 2) {
782 ++cur_version;
783 meta_table_.SetVersionNumber(cur_version);
785 std::min(cur_version, kCompatibleVersionNumber));
789 if (cur_version == 3) {
818 ++cur_version;
819 meta_table_.SetVersionNumber(cur_version);
823 if (cur_version == 4) {
835 ++cur_version;
[all...]
/external/qemu/target-i386/
H A Dhax-interface.h336 uint32_t cur_version; member in struct:hax_module_version
343 uint32_t cur_version; member in struct:hax_qemu_version
H A Dhax-all.c169 if ( (hax_lest_version > version.cur_version) ||
384 qversion.cur_version = hax_cur_version;
/external/f2fs-tools/fsck/
H A Dmount.c276 unsigned long long cur_version = 0, pre_version = 0; local
312 cur_version = le64_to_cpu(cp_block->checkpoint_ver);
314 if (cur_version == pre_version) {
315 *version = cur_version;

Completed in 491 milliseconds