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

  /external/chromium_org/sync/engine/
commit_util.cc 206 syncable::ModelNeutralMutableEntry* local_entry) {
207 int64 old_version = local_entry->GetBaseVersion();
211 !local_entry->GetUniqueClientTag().empty()) {
223 LOG(ERROR) << "Bad version in commit return for " << *local_entry
232 local_entry->PutBaseVersion(new_version);
233 DVLOG(1) << "Commit is changing base version of " << local_entry->GetId()
235 local_entry->PutServerVersion(new_version);
242 syncable::ModelNeutralMutableEntry* local_entry) {
243 syncable::BaseWriteTransaction* trans = local_entry->base_write_transaction();
263 ChangeEntryIDAndUpdateChildren(trans, local_entry, entry_response_id)
    [all...]
syncer_util.cc 106 syncable::Entry local_entry(trans, syncable::GET_BY_CLIENT_TAG,
112 if (local_entry.good()) {
113 if (local_entry.GetId().ServerKnows()) {
114 if (local_entry.GetId() != update_id) {
117 if (local_entry.GetId() < update_id) {
128 return local_entry.GetId();
134 // update will now be applied to local_entry.
135 DCHECK(0 == local_entry.GetBaseVersion() ||
136 CHANGES_VERSION == local_entry.GetBaseVersion());
137 return local_entry.GetId()
    [all...]
syncer_util.h 70 syncable::ModelNeutralMutableEntry* local_entry,
  /external/chromium/chrome/browser/sync/engine/
process_commit_response_command.cc 218 MutableEntry local_entry(trans, GET_BY_ID, pre_commit_id);
219 CHECK(local_entry.good());
220 bool syncing_was_set = local_entry.Get(SYNCING);
221 local_entry.Put(SYNCING, false);
231 VLOG(1) << "Transient Error Committing: " << local_entry;
236 LOG(ERROR) << "Error Commiting: " << local_entry;
241 VLOG(1) << "Conflict Committing: " << local_entry;
243 if (!pre_commit_id.ServerKnows() && local_entry.Get(IS_DIR)) {
249 VLOG(1) << "Retry Committing: " << local_entry;
253 LOG(WARNING) << "Hit deprecated OVER_QUOTA Committing: " << local_entry;
    [all...]
process_commit_response_command.h 49 const syncable::Id& pre_commit_id, syncable::MutableEntry* local_entry,
58 syncable::MutableEntry* local_entry);
65 syncable::MutableEntry* local_entry);
72 syncable::MutableEntry* local_entry);
83 syncable::MutableEntry* local_entry);
syncer_proto_util.cc 258 bool SyncerProtoUtil::Compare(const syncable::Entry& local_entry,
262 CHECK(local_entry.Get(ID) == server_entry.id()) <<
264 CHECK(server_entry.version() == local_entry.Get(BASE_VERSION)) <<
266 CHECK(!local_entry.Get(IS_UNSYNCED)) <<
269 if (local_entry.Get(IS_DEL) && server_entry.deleted())
271 if (!ClientAndServerTimeMatch(local_entry.Get(CTIME), server_entry.ctime())) {
278 string client_name = local_entry.Get(syncable::NON_UNIQUE_NAME);
283 if (local_entry.Get(PARENT_ID) != server_entry.parent_id()) {
287 if (local_entry.Get(IS_DIR) != server_entry.IsFolder()) {
291 if (local_entry.Get(IS_DEL) != server_entry.deleted())
    [all...]
syncer_util.cc 159 syncable::Entry local_entry(trans, syncable::GET_BY_CLIENT_TAG,
165 if (local_entry.good()) {
166 if (local_entry.Get(ID).ServerKnows()) {
167 if (local_entry.Get(ID) != update.id()) {
170 if (local_entry.Get(ID) < update.id()) {
181 return local_entry.Get(ID);
187 // update will now be applied to local_entry.
188 DCHECK(0 == local_entry.Get(BASE_VERSION) ||
189 CHANGES_VERSION == local_entry.Get(BASE_VERSION));
190 return local_entry.Get(ID)
    [all...]
syncer_proto_util.h 57 static bool Compare(const syncable::Entry& local_entry,
syncer_util.h 64 syncable::MutableEntry* local_entry,
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
drive_file_sync_service_sync_unittest.cc 308 const fileapi::DirectoryEntry& local_entry = *itr; local
310 CreateSyncableFileSystemURL(origin, path.Append(local_entry.name)));
314 if (local_entry.is_directory) {

Completed in 111 milliseconds