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

  /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/sync/engine/
process_commit_response_command.cc 174 MutableEntry local_entry(trans, GET_BY_ID, pre_commit_id);
175 CHECK(local_entry.good());
176 bool syncing_was_set = local_entry.Get(SYNCING);
177 local_entry.Put(SYNCING, false);
187 DVLOG(1) << "Transient Error Committing: " << local_entry;
192 LOG(ERROR) << "Error Commiting: " << local_entry;
197 DVLOG(1) << "Conflict Committing: " << local_entry;
201 DVLOG(1) << "Retry Committing: " << local_entry;
205 LOG(WARNING) << "Hit deprecated OVER_QUOTA Committing: " << local_entry;
233 pre_commit_id, &local_entry, syncing_was_set, deleted_folders)
    [all...]
process_commit_response_command.h 79 const syncable::Id& pre_commit_id, syncable::MutableEntry* local_entry,
88 syncable::MutableEntry* local_entry);
95 syncable::MutableEntry* local_entry);
102 syncable::MutableEntry* local_entry);
113 syncable::MutableEntry* local_entry);
syncer_util.cc 104 syncable::Entry local_entry(trans, syncable::GET_BY_CLIENT_TAG,
110 if (local_entry.good()) {
111 if (local_entry.Get(ID).ServerKnows()) {
112 if (local_entry.Get(ID) != update_id) {
115 if (local_entry.Get(ID) < update_id) {
126 return local_entry.Get(ID);
132 // update will now be applied to local_entry.
133 DCHECK(0 == local_entry.Get(BASE_VERSION) ||
134 CHANGES_VERSION == local_entry.Get(BASE_VERSION));
135 return local_entry.Get(ID)
    [all...]
syncer_proto_util.cc 488 bool SyncerProtoUtil::Compare(const syncable::Entry& local_entry,
492 CHECK_EQ(local_entry.Get(ID), SyncableIdFromProto(server_entry.id_string()));
493 CHECK_EQ(server_entry.version(), local_entry.Get(BASE_VERSION));
494 CHECK(!local_entry.Get(IS_UNSYNCED));
496 if (local_entry.Get(IS_DEL) && server_entry.deleted())
498 if (local_entry.Get(CTIME) != ProtoTimeToTime(server_entry.ctime())) {
505 string client_name = local_entry.Get(syncable::NON_UNIQUE_NAME);
510 if (local_entry.Get(PARENT_ID) !=
515 if (local_entry.Get(IS_DIR) != IsFolder(server_entry)) {
519 if (local_entry.Get(IS_DEL) != server_entry.deleted())
    [all...]
syncer_util.h 69 syncable::MutableEntry* local_entry,
syncer_proto_util.h 68 static bool Compare(const syncable::Entry& local_entry,
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_file_sync_service_sync_unittest.cc 365 const fileapi::DirectoryEntry& local_entry = *itr; local
367 CreateSyncableFileSystemURL(origin, path.Append(local_entry.name)));
371 if (local_entry.is_directory) {

Completed in 240 milliseconds