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

  /external/chromium_org/sync/engine/
non_blocking_sync_common.h 60 std::string client_tag_hash; member in struct:syncer::CommitRequestData
80 std::string client_tag_hash; member in struct:syncer::CommitResponseData
90 std::string client_tag_hash; member in struct:syncer::UpdateResponseData
non_blocking_type_processor.cc 102 const std::string client_tag_hash(
105 EntityMap::iterator it = entities_.find(client_tag_hash);
110 entities_.insert(std::make_pair(client_tag_hash, entity.release()));
120 const std::string client_tag_hash(
123 EntityMap::iterator it = entities_.find(client_tag_hash);
172 const std::string& client_tag_hash = response_data.client_tag_hash; local
174 EntityMap::iterator it = entities_.find(client_tag_hash);
177 << " type: " << type_ << " client_tag: " << client_tag_hash; local
199 const std::string& client_tag_hash = response_data.client_tag_hash local
    [all...]
non_blocking_type_processor_core.cc 80 const std::string& client_tag_hash = local
82 DCHECK(!client_tag_hash.empty());
83 EntityMap::const_iterator map_it = entities_.find(client_tag_hash);
87 client_tag_hash,
89 entities_.insert(std::make_pair(client_tag_hash, entity));
98 response_data.client_tag_hash = client_tag_hash;
196 EntityMap::iterator map_it = entities_.find(request.client_tag_hash);
200 request.client_tag_hash,
208 entities_.insert(std::make_pair(request.client_tag_hash, entity))
231 const std::string client_tag_hash = response_it->client_tag_hash; local
    [all...]
non_blocking_type_processor_core_unittest.cc 390 const std::string& client_tag_hash = local
392 return client_tag_hash;
424 const std::string& client_tag_hash = GenerateTagHash("tag1"); local
437 EXPECT_EQ(client_tag_hash, entity.client_defined_unique_tag());
453 EXPECT_EQ(client_tag_hash, commit_response.client_tag_hash);
499 commit_response.client_tag_hash);
594 EXPECT_EQ(tag_hash, update.client_tag_hash);
  /external/chromium_org/sync/test/engine/
mock_non_blocking_type_processor_core.cc 43 if (it->client_tag_hash == tag_hash) {
64 if (it->client_tag_hash == tag_hash) {
87 data.client_tag_hash = tag_hash;
112 data.client_tag_hash = tag_hash;
127 const std::string& client_tag_hash = request_data.client_tag_hash; local
137 response_data.id = GenerateId(client_tag_hash);
140 response_data.client_tag_hash = client_tag_hash;
144 int64 version = GetServerVersion(client_tag_hash);
    [all...]

Completed in 176 milliseconds