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

  /external/chromium_org/chrome/browser/history/
history_database.cc 298 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...]
thumbnail_database.cc 1208 int cur_version = meta_table_.GetVersionNumber(); local
    [all...]
history_unittest.cc 322 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 = HistoryDatabase::GetCurrentVersion() local
620 int cur_version = HistoryDatabase::GetCurrentVersion(); local
704 int cur_version = HistoryDatabase::GetCurrentVersion(); local
    [all...]
thumbnail_database.h 259 sql::InitStatus CantUpgradeToVersion(int cur_version);
history_backend_unittest.cc 1500 int cur_version = HistoryDatabase::GetCurrentVersion(); local
2754 int cur_version = HistoryDatabase::GetCurrentVersion(); local
    [all...]
  /external/chromium_org/net/extras/sqlite/
sqlite_channel_id_store.cc 276 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/
net_util_win.h 36 DWORD OpenHandle(DWORD client_version, DWORD* cur_version, T* handle) const {
38 DWORD result = open_handle_func(client_version, NULL, cur_version,
net_util_win.cc 212 DWORD cur_version = 0; local
214 DWORD result = wlanapi.OpenHandle(kMaxClientVersion, &cur_version, &client);
281 DWORD cur_version = 0;
284 kMaxClientVersion, &cur_version, &client_);
net_util_unittest.cc 829 DWORD cur_version = 0; local
832 kMaxClientVersion, &cur_version, &client);
  /external/chromium_org/content/browser/net/
sqlite_persistent_cookie_store.cc 771 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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
bdist_wininst.py 333 cur_version = get_python_version()
334 if self.target_version and self.target_version != cur_version:
338 if self.target_version > cur_version:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
bdist_wininst.py 333 cur_version = get_python_version()
334 if self.target_version and self.target_version != cur_version:
338 if self.target_version > cur_version:
  /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
hax-all.c 169 if ( (hax_lest_version > version.cur_version) ||
384 qversion.cur_version = hax_cur_version;
  /external/f2fs-tools/fsck/
mount.c 276 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;
    [all...]

Completed in 247 milliseconds