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

  /external/chromium_org/sync/engine/
commit_util.cc 218 syncable::ModelNeutralMutableEntry* local_entry) {
219 int64 old_version = local_entry->GetBaseVersion();
223 !local_entry->GetUniqueClientTag().empty()) {
235 LOG(ERROR) << "Bad version in commit return for " << *local_entry
244 local_entry->PutBaseVersion(new_version);
245 DVLOG(1) << "Commit is changing base version of " << local_entry->GetId()
247 local_entry->PutServerVersion(new_version);
254 syncable::ModelNeutralMutableEntry* local_entry) {
255 syncable::BaseWriteTransaction* trans = local_entry->base_write_transaction();
275 ChangeEntryIDAndUpdateChildren(trans, local_entry, entry_response_id)
    [all...]
syncer_util.cc 107 syncable::Entry local_entry(trans, syncable::GET_BY_CLIENT_TAG,
113 if (local_entry.good()) {
114 if (local_entry.GetId().ServerKnows()) {
115 if (local_entry.GetId() != update_id) {
118 if (local_entry.GetId() < update_id) {
129 return local_entry.GetId();
135 // update will now be applied to local_entry.
136 DCHECK(0 == local_entry.GetBaseVersion() ||
137 CHANGES_VERSION == local_entry.GetBaseVersion());
138 return local_entry.GetId()
    [all...]
syncer_util.h 73 syncable::ModelNeutralMutableEntry* local_entry,
  /external/chromium_org/chrome/browser/webdata/
autocomplete_syncable_service.cc 33 // Merges timestamps from the |sync_timestamps| and the |local_entry|.
39 const AutofillEntry& local_entry,
43 *date_created = local_entry.date_created();
44 *date_last_used = local_entry.date_last_used();
53 if (sync_date_created == local_entry.date_created() &&
54 sync_date_last_used == local_entry.date_last_used())
57 *date_created = std::min(local_entry.date_created(), sync_date_created);
58 *date_last_used = std::max(local_entry.date_last_used(), sync_date_last_used);
  /external/chromium_org/chrome/browser/chromeos/drive/
change_list_processor.cc 57 bool ShouldApplyChange(const ResourceEntry& local_entry,
59 if (local_entry.metadata_edit_state() == ResourceEntry::CLEAN)
62 base::Time::FromInternalValue(local_entry.modification_date());
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
drive_file_sync_service_sync_unittest.cc 323 const fileapi::DirectoryEntry& local_entry = *itr; local
325 CreateSyncableFileSystemURL(origin, path.Append(local_entry.name)));
329 if (local_entry.is_directory) {
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_backend_sync_unittest.cc 453 const fileapi::DirectoryEntry& local_entry = *itr; local
455 CreateURL(app_id, path.Append(local_entry.name)));
463 if (local_entry.is_directory) {
    [all...]

Completed in 142 milliseconds