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

  /external/chromium/chrome/browser/sync/engine/
process_updates_command.h 17 class SyncEntity;
27 // Postconditions - All of the verified SyncEntity data will be copied to
42 const sync_pb::SyncEntity& proto_update);
syncproto.h 36 class SyncEntity : public IdWrapper<sync_pb::SyncEntity> {
38 SyncEntity() {}
39 explicit SyncEntity(const sync_pb::SyncEntity& other)
40 : IdWrapper<sync_pb::SyncEntity>(other) {
50 IdWrapper<sync_pb::SyncEntity>::set_old_parent_id(
55 sync_pb::SyncEntity::old_parent_id());
process_commit_response_command.h 38 const sync_pb::SyncEntity& pb_committed_entry,
47 const sync_pb::SyncEntity& committed_entry,
55 const sync_pb::SyncEntity& committed_entry,
70 const sync_pb::SyncEntity& committed_entry,
81 const sync_pb::SyncEntity& committed_entry,
87 const sync_pb::SyncEntity& committed_entry,
verify_updates_command.h 38 const SyncEntity& entry,
syncer_proto_util.h 36 class SyncEntity;
50 // Compares a syncable Entry to SyncEntity, returns true iff the data is
58 const SyncEntity& server_entry);
71 const sync_pb::SyncEntity& entry);
89 static std::string SyncEntityDebugString(const sync_pb::SyncEntity& entry);
process_updates_command.cc 52 const sync_pb::SyncEntity& update = it->second;
75 bool ReverifyEntry(syncable::WriteTransaction* trans, const SyncEntity& entry,
94 const sync_pb::SyncEntity& proto_update) {
96 const SyncEntity& update = *static_cast<const SyncEntity*>(&proto_update);
syncer_util.h 25 class SyncEntity;
54 const SyncEntity& server_entry);
65 const SyncEntity& server_entry,
85 static VerifyResult VerifyNewEntry(const SyncEntity& update,
92 const SyncEntity& update,
101 const SyncEntity& update,
verify_updates_command.cc 45 const SyncEntity& update =
46 *reinterpret_cast<const SyncEntity *>(&(updates.entries(i)));
66 VerifyResult VerifyTagConsistency(const SyncEntity& entry,
78 syncable::WriteTransaction* trans, const SyncEntity& entry,
build_commit_command.cc 59 void SetEntrySpecifics(MutableEntry* meta_entry, SyncEntity* sync_entry) {
67 void SetOldStyleBookmarkData(MutableEntry* meta_entry, SyncEntity* sync_entry) {
101 SyncEntity* sync_entry =
102 static_cast<SyncEntity*>(commit_message->add_entries());
process_commit_response_command.cc 211 const sync_pb::SyncEntity& commit_request_entry,
284 const sync_pb::SyncEntity& committed_entry,
294 const sync_pb::SyncEntity& committed_entry,
357 const sync_pb::SyncEntity& committed_entry,
408 const sync_pb::SyncEntity& committed_entry,
446 const sync_pb::SyncEntity& committed_entry,
syncer_proto_util_unittest.cc 82 SyncEntity one_name_entity;
95 SyncEntity one_name_entity;
112 SyncEntity two_name_entity;
syncer_proto_util.cc 259 const SyncEntity& server_entry) {
329 const sync_pb::SyncEntity& entry) {
344 const sync_pb::SyncEntity& entry) {
verify_updates_command_unittest.cc 63 sync_pb::SyncEntity* e = updates->add_entries();
syncer_util.cc 132 const SyncEntity& update) {
134 // SyncEntity has NOT been applied to SERVER fields.
135 // SyncEntity has NOT been applied to LOCAL fields.
382 const SyncEntity& update,
434 const SyncEntity::BookmarkData& bookmark = update.bookmarkdata();
686 const SyncEntity& update,
706 const SyncEntity& update,
791 const SyncEntity& update,
    [all...]
process_commit_response_command_unittest.cc 149 SyncEntity* entity = static_cast<SyncEntity*>(
syncer_unittest.cc     [all...]
  /external/chromium/chrome/browser/sync/syncable/
model_type.h 25 class SyncEntity;
88 // Extract the model type of a SyncEntity protocol buffer. ModelType is a
89 // local concept: the enum is not in the protocol. The SyncEntity's ModelType
92 ModelType GetModelType(const sync_pb::SyncEntity& sync_entity);
model_type.cc 120 ModelType GetModelType(const sync_pb::SyncEntity& sync_pb_entity) {
121 const browser_sync::SyncEntity& sync_entity =
122 static_cast<const browser_sync::SyncEntity&>(sync_pb_entity);
syncable_unittest.cc     [all...]
  /external/chromium/chrome/browser/sync/sessions/
session_state.h 184 typedef std::pair<VerifyResult, sync_pb::SyncEntity> VerifiedUpdate;
194 const sync_pb::SyncEntity& entity);
status_controller_unittest.cc 177 sync_pb::SyncEntity* entity1 = response->mutable_get_updates()->add_entries();
178 sync_pb::SyncEntity* entity2 = response->mutable_get_updates()->add_entries();
session_state.cc 293 const sync_pb::SyncEntity& entity) {
  /external/chromium/net/tools/testserver/
chromiumsync_test.py 45 proto = sync_pb2.SyncEntity()
60 proto = sync_pb2.SyncEntity()
75 entry = sync_pb2.SyncEntity()
169 entry = sync_pb2.SyncEntity()
193 entry = sync_pb2.SyncEntity()
231 proto = sync_pb2.SyncEntity()
chromiumsync.py 88 entry: A SyncEntity protobuf object whose type to determine.
277 # SyncEntity protocol buffer.
433 entry = sync_pb2.SyncEntity()
528 """Check that the parent ID referenced in a SyncEntity actually exists.
589 entry: A SyncEntity protobuf representing desired object changes.
597 A SyncEntity reflecting the post-commit value of the entry, or None
630 id_string: Index of the SyncEntity to be deleted.
632 A new SyncEntity reflecting the fact that the entry is deleted.
638 tombstone = sync_pb2.SyncEntity()
645 """Check if a SyncEntity is a child of entry, or any of its children
    [all...]

Completed in 255 milliseconds