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

  /external/chromium/chrome/browser/sync/engine/
clear_data_command_unittest.cc 72 dir->set_store_birthday(mock_server()->store_birthday());
108 dir->set_store_birthday(mock_server()->store_birthday());
syncer_proto_util_unittest.cc 148 EXPECT_TRUE(lookup->store_birthday().empty());
155 EXPECT_EQ(lookup->store_birthday(), "flan");
160 EXPECT_EQ(lookup->store_birthday(), "flan");
174 EXPECT_TRUE(lookup->store_birthday().empty());
181 EXPECT_EQ(msg.store_birthday(), "meat");
syncer_proto_util.cc 100 std::string local_birthday = dir->store_birthday();
114 VLOG(1) << "New store birthday: " << response->store_birthday();
115 dir->set_store_birthday(response->store_birthday());
125 if (response->store_birthday() != local_birthday) {
136 if (!dir->store_birthday().empty())
137 msg->set_store_birthday(dir->store_birthday());
syncer_unittest.cc     [all...]
  /external/chromium/net/tools/testserver/
chromiumsync.py 281 self.store_birthday = '%0.30f' % random.random()
746 response.store_birthday = self.account.store_birthday
    [all...]
  /external/chromium/chrome/browser/sync/engine/net/
server_connection_manager.cc 355 string birthday = dir->store_birthday();
  /external/chromium/chrome/browser/sync/syncable/
syncable.h 703 std::string store_birthday; member in struct:syncable::Directory::PersistedKernelInfo
787 std::string store_birthday() const;
788 void set_store_birthday(const std::string& store_birthday);
    [all...]
syncable.cc 875 string Directory::store_birthday() const { function in class:syncable::Directory
877 return kernel_->persisted_info.store_birthday;
880 void Directory::set_store_birthday(const string& store_birthday) {
882 if (kernel_->persisted_info.store_birthday == store_birthday)
884 kernel_->persisted_info.store_birthday = store_birthday;
    [all...]
directory_backing_store.cc 380 "SET store_birthday = ?, "
391 update.bind_string(0, info.store_birthday);
585 "SELECT store_birthday, next_id, cache_guid, "
594 info->kernel_info.store_birthday = query.column_string(0);
943 "INSERT INTO temp_share_info (id, name, store_birthday, "
945 "SELECT id, name, store_birthday, db_create_version, "
    [all...]
syncable_unittest.cc     [all...]

Completed in 303 milliseconds