Searched defs:local_entry (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/chrome/browser/chromeos/drive/
H A Dchange_list_processor.cc57 bool ShouldApplyChange(const ResourceEntry& local_entry, argument
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/
H A Ddrive_file_sync_service_sync_unittest.cc323 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/webdata/
H A Dautocomplete_syncable_service.cc33 // 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);
37 MergeTimestamps( const google::protobuf::RepeatedField<int64_t>& sync_timestamps, const AutofillEntry& local_entry, base::Time* date_created, base::Time* date_last_used) argument
/external/chromium_org/sync/engine/
H A Dcommit_util.cc218 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_i
214 UpdateVersionAfterCommit( const sync_pb::SyncEntity& committed_entry, const sync_pb::CommitResponse_EntryResponse& entry_response, const syncable::Id& pre_commit_id, syncable::ModelNeutralMutableEntry* local_entry) argument
251 ChangeIdAfterCommit( const sync_pb::CommitResponse_EntryResponse& entry_response, const syncable::Id& pre_commit_id, syncable::ModelNeutralMutableEntry* local_entry) argument
281 UpdateServerFieldsAfterCommit( const sync_pb::SyncEntity& committed_entry, const sync_pb::CommitResponse_EntryResponse& entry_response, syncable::ModelNeutralMutableEntry* local_entry) argument
332 ProcessSuccessfulCommitResponse( const sync_pb::SyncEntity& committed_entry, const sync_pb::CommitResponse_EntryResponse& entry_response, const syncable::Id& pre_commit_id, syncable::ModelNeutralMutableEntry* local_entry, bool syncing_was_set, set<syncable::Id>* deleted_folders) argument
[all...]
H A Dsyncer_util.cc107 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
311 UpdateBookmarkSpecifics(const std::string& singleton_tag, const std::string& url, const std::string& favicon_bytes, syncable::ModelNeutralMutableEntry* local_entry) argument
328 UpdateBookmarkPositioning( const sync_pb::SyncEntity& update, syncable::ModelNeutralMutableEntry* local_entry) argument
[all...]
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Ddrive_backend_sync_unittest.cc453 const fileapi::DirectoryEntry& local_entry = *itr; local
455 CreateURL(app_id, path.Append(local_entry.name)));
463 if (local_entry.is_directory) {

Completed in 514 milliseconds