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

1 2 3

  /external/chromium_org/sync/syncable/
syncable_proto_util.h 14 class SyncEntity;
28 // Helper function to determine if this SyncEntity's properties indicate that it
30 bool IsFolder(const sync_pb::SyncEntity& entity);
32 // Helper function to determine if this SyncEntity's properties indicate that it
34 bool IsRoot(const sync_pb::SyncEntity& entity);
syncable_proto_util.cc 19 bool IsFolder(const sync_pb::SyncEntity& entity) {
28 bool IsRoot(const sync_pb::SyncEntity& entity) {
  /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());
  /external/chromium_org/sync/api/
sync_data.h 20 class SyncEntity;
93 // Necessary since we forward-declare sync_pb::SyncEntity; see
96 typedef sync_pb::SyncEntity* Wrapper;
102 static const sync_pb::SyncEntity& Unwrap(const Wrapper& wrapper);
104 static sync_pb::SyncEntity* UnwrapMutable(Wrapper* wrapper);
106 static void Swap(sync_pb::SyncEntity* t1, sync_pb::SyncEntity* t2);
109 typedef Immutable<sync_pb::SyncEntity, ImmutableSyncEntityTraits>
114 sync_pb::SyncEntity* entity,
sync_data.cc 22 *wrapper = new sync_pb::SyncEntity();
30 const sync_pb::SyncEntity& SyncData::ImmutableSyncEntityTraits::Unwrap(
35 sync_pb::SyncEntity* SyncData::ImmutableSyncEntityTraits::UnwrapMutable(
40 void SyncData::ImmutableSyncEntityTraits::Swap(sync_pb::SyncEntity* t1,
41 sync_pb::SyncEntity* t2) {
50 sync_pb::SyncEntity* entity,
73 sync_pb::SyncEntity entity;
85 sync_pb::SyncEntity entity;
  /external/chromium_org/sync/engine/
syncer_util.h 23 class SyncEntity;
46 const sync_pb::SyncEntity& server_entry);
61 UniquePosition GetUpdatePosition(const sync_pb::SyncEntity& update,
66 std::string GetUniqueBookmarkTagFromUpdate(const sync_pb::SyncEntity& update);
71 const sync_pb::SyncEntity& server_entry,
85 VerifyResult VerifyNewEntry(const sync_pb::SyncEntity& update,
93 const sync_pb::SyncEntity& update,
102 const sync_pb::SyncEntity& update,
process_updates_util.h 18 class SyncEntity;
35 typedef std::vector<const sync_pb::SyncEntity*> SyncEntityList;
61 const sync_pb::SyncEntity& entry,
65 // the SyncEntity's data into the SERVER side of the syncable::Directory.
67 const sync_pb::SyncEntity& proto_update,
commit_util.h 15 class SyncEntity;
44 sync_pb::SyncEntity* sync_entry);
56 const sync_pb::SyncEntity& commit_request_entry,
sync_directory_commit_contribution.h 81 const google::protobuf::RepeatedPtrField<sync_pb::SyncEntity>& entities,
88 const google::protobuf::RepeatedPtrField<sync_pb::SyncEntity> entities_;
syncer_proto_util.h 24 class SyncEntity;
61 static bool ShouldMaintainPosition(const sync_pb::SyncEntity& sync_entity);
74 const sync_pb::SyncEntity& entry);
97 static std::string SyncEntityDebugString(const sync_pb::SyncEntity& entry);
process_updates_util.cc 47 const sync_pb::SyncEntity &update) {
89 const sync_pb::SyncEntity& update = updates.entries(i);
134 const sync_pb::SyncEntity& entry,
148 const sync_pb::SyncEntity& entry,
207 const sync_pb::SyncEntity& entry,
225 const sync_pb::SyncEntity& update,
commit_util.cc 87 sync_pb::SyncEntity* sync_entry) {
99 sync_pb::SyncEntity* sync_entry) {
193 const sync_pb::SyncEntity& committed_entry,
203 const sync_pb::SyncEntity& committed_entry,
270 const sync_pb::SyncEntity& committed_entry,
321 const sync_pb::SyncEntity& committed_entry,
368 const sync_pb::SyncEntity& commit_request_entry,
sync_directory_commit_contribution.cc 35 google::protobuf::RepeatedPtrField<sync_pb::SyncEntity> entities;
38 sync_pb::SyncEntity* entity = entities.Add();
145 const google::protobuf::RepeatedPtrField<sync_pb::SyncEntity>& entities,
  /external/chromium_org/sync/test/engine/
mock_connection_manager.h 58 // The SyncEntity returned is only valid until the Sync is completed
61 sync_pb::SyncEntity* AddUpdateDirectory(
69 sync_pb::SyncEntity* AddUpdateBookmark(syncable::Id id,
77 sync_pb::SyncEntity* AddUpdateDirectory(
85 sync_pb::SyncEntity* AddUpdateBookmark(int id,
93 sync_pb::SyncEntity* AddUpdateDirectory(
101 sync_pb::SyncEntity* AddUpdateBookmark(std::string id,
109 sync_pb::SyncEntity* AddUpdateSpecifics(
118 sync_pb::SyncEntity* AddUpdateSpecifics(
129 sync_pb::SyncEntity* SetNigori
    [all...]
mock_connection_manager.cc 181 void MockConnectionManager::AddDefaultBookmarkData(sync_pb::SyncEntity* entity,
200 sync_pb::SyncEntity* MockConnectionManager::AddUpdateDirectory(
231 sync_pb::SyncEntity* MockConnectionManager::AddUpdateBookmark(
246 sync_pb::SyncEntity* MockConnectionManager::AddUpdateSpecifics(
255 sync_pb::SyncEntity* ent = AddUpdateMeta(
265 sync_pb::SyncEntity* MockConnectionManager::AddUpdateSpecifics(
276 sync_pb::SyncEntity* ent = AddUpdateSpecifics(
283 sync_pb::SyncEntity* MockConnectionManager::SetNigori(
288 sync_pb::SyncEntity* ent = GetUpdateResponse()->add_entries();
304 sync_pb::SyncEntity* MockConnectionManager::AddUpdatePref(string id
    [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);
  /external/chromium_org/sync/internal_api/public/base/
model_type.h 27 class SyncEntity;
158 // Extract the model type of a SyncEntity protocol buffer. ModelType is a
159 // local concept: the enum is not in the protocol. The SyncEntity's ModelType
163 const sync_pb::SyncEntity& sync_entity);

Completed in 81 milliseconds

1 2 3