HomeSort by relevance Sort by last modified time
    Searched refs:cache_guid (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/chrome/browser/sync/glue/
synced_device_tracker.cc 21 // Return the DeviceInfo UNIQUE_CLIENT_TAG value for the given sync cache_guid.
22 std::string DeviceInfoLookupString(const std::string& cache_guid) {
23 return base::StringPrintf("DeviceInfo_%s", cache_guid.c_str());
29 const std::string& cache_guid)
33 cache_guid_(cache_guid),
34 local_device_info_tag_(DeviceInfoLookupString(cache_guid)) {
70 new DeviceInfo(specifics.cache_guid(),
89 new DeviceInfo(specifics.cache_guid(),
126 new DeviceInfo(specifics.cache_guid(),
synced_device_tracker_unittest.cc 48 user_share()->directory->cache_guid()));
113 user_share()->directory->cache_guid(),
130 user_share()->directory->cache_guid(),
159 user_share()->directory->cache_guid(),
168 user_share()->directory->cache_guid(),
synced_device_tracker.h 27 const std::string& cache_guid);
session_model_associator.cc 74 machine_tag.append(dir->cache_guid());
78 // Given a session tag this function returns the client_id(cache_guid).
    [all...]
  /external/chromium/net/tools/testserver/
chromiumsync.py 554 def _RewriteIdsAsServerIds(self, entry, cache_guid, commit_session):
565 cache_guid: The globally unique ID of the client that sent this
575 new_id = self._ClientIdToId(cache_guid, entry.id_string)
576 entry.originator_cache_guid = cache_guid
585 def CommitEntry(self, entry, cache_guid, commit_session):
590 cache_guid: A string value uniquely identifying the client; this
605 self._RewriteIdsAsServerIds(entry, cache_guid, commit_session)
782 guid = commit_message.cache_guid
    [all...]
  /external/chromium_org/sync/syncable/
directory.h 126 std::string cache_guid; // Created on first initialization, never changes. member in struct:syncer::syncable::Directory::KernelLoadInfo
214 std::string cache_guid() const;
463 const std::string cache_guid; member in struct:syncer::syncable::Directory::Kernel
directory.cc 74 cache_guid(info.cache_guid),
866 string Directory::cache_guid() const { function in class:syncer::syncable::Directory
868 return kernel_->cache_guid;
    [all...]
directory_backing_store.cc 480 "db_create_version, db_create_time, next_id, cache_guid,"
483 "db_create_time, next_id, cache_guid, notification_state, "
542 "SELECT store_birthday, next_id, cache_guid, bag_of_chips "
549 info->cache_guid = s.ColumnString(2);
855 "db_create_version, db_create_time, next_id, cache_guid) "
857 "db_create_time, next_id, cache_guid FROM share_info"))
1166 std::string cache_guid = get_cache_guid.ColumnString(0); local
    [all...]
mutable_entry.cc 69 trans->directory()->cache_guid(), Get(ID).GetServerId());
  /external/chromium_org/sync/internal_api/public/
sync_manager.h 412 // Returns the cache_guid of the currently open database.
414 virtual const std::string cache_guid() = 0;
  /external/chromium_org/sync/internal_api/public/test/
fake_sync_manager.h 120 virtual const std::string cache_guid() OVERRIDE;
  /external/chromium_org/sync/internal_api/test/
fake_sync_manager.cc 224 const std::string FakeSyncManager::cache_guid() { function in class:syncer::FakeSyncManager
225 return test_user_share_.user_share()->directory->cache_guid();
  /external/chromium_org/sync/tools/testserver/
chromiumsync.py 820 def _RewriteIdsAsServerIds(self, entry, cache_guid, commit_session):
    [all...]
  /external/chromium/chrome/browser/sync/engine/
build_commit_command.cc 93 session->write_transaction()->directory()->cache_guid());
syncer_util.cc 138 const std::string& client_id = trans->directory()->cache_guid();
    [all...]
  /external/chromium_org/sync/engine/
build_commit_command.cc 117 commit_message->set_cache_guid(trans_->directory()->cache_guid());
syncer_util.cc 82 const std::string& client_id = trans->directory()->cache_guid();
  /external/chromium_org/sync/internal_api/
sync_manager_impl.h 112 virtual const std::string cache_guid() OVERRIDE;
sync_manager_impl.cc 424 connection_manager_->set_client_id(directory()->cache_guid());
427 std::string sync_id = directory()->cache_guid();
1263 const std::string SyncManagerImpl::cache_guid() { function in class:syncer::SyncManagerImpl
    [all...]
  /external/chromium_org/sync/internal_api/public/base/
unique_position_unittest.cc 384 explicit SuffixGenerator(const std::string& cache_guid)
385 : cache_guid_(cache_guid),
  /external/chromium/chrome/browser/sync/syncable/
syncable.h 716 std::string cache_guid; // Created on first initialization, never changes. member in struct:syncable::Directory::KernelLoadInfo
794 std::string cache_guid() const;
1033 std::string cache_guid; member in struct:syncable::Directory::Kernel
    [all...]
syncable.cc 322 cache_guid(info.cache_guid),
900 string Directory::cache_guid() const { function in class:syncable::Directory
902 return kernel_->cache_guid;
    [all...]
directory_backing_store.cc 585 "SELECT store_birthday, next_id, cache_guid, "
596 info->cache_guid = query.column_string(2);
944 "db_create_version, db_create_time, next_id, cache_guid) "
946 "db_create_time, next_id, cache_guid FROM share_info");
    [all...]
  /external/chromium_org/sync/protocol/
proto_value_conversions.cc 352 SET_STR(cache_guid);
678 SET_STR(cache_guid);
  /external/chromium/chrome/browser/sync/glue/
session_model_associator.cc 453 // kernel's cache_guid changes every time syncing is turned on and off. This
459 current_machine_tag_.append(dir->cache_guid());
    [all...]

Completed in 361 milliseconds

1 2