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

  /external/chromium_org/sync/engine/
syncer_proto_util_unittest.cc 206 EXPECT_TRUE(directory()->store_birthday().empty());
213 EXPECT_EQ(directory()->store_birthday(), "flan");
218 EXPECT_EQ(directory()->store_birthday(), "flan");
243 EXPECT_TRUE(directory()->store_birthday().empty());
250 EXPECT_EQ(msg.store_birthday(), "meat");
syncer_proto_util.cc 209 std::string local_birthday = dir->store_birthday();
217 DVLOG(1) << "New store birthday: " << response.store_birthday();
218 dir->set_store_birthday(response.store_birthday());
228 if (response.store_birthday() != local_birthday) {
246 if (!dir->store_birthday().empty())
247 msg->set_store_birthday(dir->store_birthday());
syncer_unittest.cc 330 directory()->set_store_birthday(mock_server_->store_birthday());
    [all...]
  /external/chromium_org/sync/test/fake_server/
fake_server.h 61 // error. If |store_birthday| is the same as |store_birthday_|, false is
63 bool SetNewStoreBirthday(const std::string& store_birthday);
fake_server.cc 234 message.store_birthday() != store_birthday_) {
490 bool FakeServer::SetNewStoreBirthday(const string& store_birthday) {
491 if (store_birthday_ == store_birthday)
494 store_birthday_ = store_birthday;
  /external/chromium_org/sync/syncable/
directory.h 127 std::string store_birthday; member in struct:syncer::syncable::Directory::PersistedKernelInfo
229 std::string store_birthday() const;
230 void set_store_birthday(const std::string& store_birthday);
directory.cc 978 string Directory::store_birthday() const { function in class:syncer::syncable::Directory
    [all...]
syncable_unittest.cc 295 EXPECT_EQ("Jan 31st", dir()->store_birthday());
306 EXPECT_EQ("April 10th", dir()->store_birthday());
317 EXPECT_EQ("April 10th", dir()->store_birthday());
directory_backing_store.cc 266 "SET store_birthday = ?, "
269 s1.BindString(0, info.store_birthday);
524 "INSERT INTO temp_share_info (id, name, store_birthday, "
527 "SELECT id, name, store_birthday, db_create_version, "
587 "SELECT store_birthday, next_id, cache_guid, bag_of_chips "
592 info->kernel_info.store_birthday = s.ColumnString(0);
901 "INSERT INTO temp_share_info (id, name, store_birthday, "
903 "SELECT id, name, store_birthday, db_create_version, "
    [all...]
  /external/chromium_org/sync/tools/testserver/
chromiumsync.py 744 self.store_birthday = '%0.30f' % random.random()
748 return self.store_birthday
    [all...]
  /external/chromium_org/sync/test/engine/
mock_connection_manager.h 252 const std::string store_birthday() { function in class:syncer::MockConnectionManager
mock_connection_manager.cc 126 const string current_store_birthday = store_birthday();
128 if (post.has_store_birthday() && post.store_birthday() !=
  /external/chromium_org/sync/protocol/
proto_value_conversions.cc     [all...]

Completed in 73 milliseconds