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

  /external/chromium/chrome/browser/sync/syncable/
nigori_util.cc 30 const sync_pb::EntitySpecifics& specifics = entry.Get(SPECIFICS); local
32 specifics.GetExtension(sync_pb::nigori));
86 const sync_pb::EntitySpecifics& entry_specifics = entry.Get(SPECIFICS);
104 entry.Put(SPECIFICS, new_specifics);
118 entry.Put(SPECIFICS, new_specifics);
136 const sync_pb::EntitySpecifics& entry_specifics = entry.Get(SPECIFICS);
184 const sync_pb::EntitySpecifics& specifics = child.Get(SPECIFICS); local
186 DCHECK_EQ(type, GetModelTypeFromSpecifics(specifics));
    [all...]
syncable_enum_conversions.cc 128 ASSERT_ENUM_BOUNDS(SPECIFICS, SERVER_SPECIFICS,
131 ENUM_CASE(SPECIFICS);
directory_backing_store_unittest.cc 327 "server_bookmark_favicon blob, specifics blob, "
457 "specifics blob,server_specifics blob);"
1002 sync_pb::EntitySpecifics specifics; local
    [all...]
syncable_unittest.cc 69 sync_pb::EntitySpecifics specifics; local
70 specifics.MutableExtension(sync_pb::bookmark)->set_url("http://demo/");
71 specifics.MutableExtension(sync_pb::bookmark)->set_favicon(bytes,
73 e->Put(SPECIFICS, specifics);
81 ASSERT_TRUE(e->Get(SPECIFICS).HasExtension(sync_pb::bookmark));
83 e->Get(SPECIFICS).GetExtension(sync_pb::bookmark).url());
85 e->Get(SPECIFICS).GetExtension(sync_pb::bookmark).favicon());
431 e.Put(SPECIFICS, specs);
537 item1.Put(SPECIFICS, bookmark_specs)
1099 sync_pb::EntitySpecifics specifics; local
1300 sync_pb::EntitySpecifics specifics; local
    [all...]
directory_backing_store.cc 724 sync_pb::EntitySpecifics specifics; local
725 if (!specifics.ParseFromArray(data, size))
727 return syncable::GetModelTypeFromSpecifics(specifics);
732 sync_pb::EntitySpecifics specifics; local
733 syncable::AddDefaultExtensionValue(model_type, &specifics);
734 return specifics.SerializeAsString();
863 // protobuf blob SPECIFICS
870 if (!AddColumn(&g_metas_columns[SPECIFICS]))
878 "specifics",
895 "UPDATE metas SET specifics = NULL, server_specifics = NULL WHERE
    [all...]
syncable.h 154 SPECIFICS = PROTO_FIELDS_BEGIN,
    [all...]
syncable.cc 692 const sync_pb::EntitySpecifics& local_specifics = (*it)->ref(SPECIFICS);
    [all...]
  /external/chromium/chrome/browser/sync/engine/
build_commit_command.cc 25 using syncable::SPECIFICS;
61 sync_entry->mutable_specifics()->CopyFrom(meta_entry->Get(SPECIFICS));
68 DCHECK(meta_entry->Get(SPECIFICS).HasExtension(sync_pb::bookmark));
76 meta_entry->Get(SPECIFICS).GetExtension(sync_pb::bookmark);
174 if (meta_entry.Get(SPECIFICS).HasExtension(sync_pb::bookmark)) {
syncer_unittest.cc 88 using syncable::SPECIFICS;
216 sync_pb::EntitySpecifics specifics; local
217 specifics.MutableExtension(sync_pb::bookmark)->set_url("http://demo/");
218 specifics.MutableExtension(sync_pb::bookmark)->set_favicon("PNG");
219 entry->Put(syncable::SPECIFICS, specifics);
228 const sync_pb::EntitySpecifics& specifics = entry->Get(syncable::SPECIFICS); local
229 EXPECT_TRUE(specifics.HasExtension(sync_pb::bookmark));
230 EXPECT_EQ("PNG", specifics.GetExtension(sync_pb::bookmark).favicon())
    [all...]
syncapi.cc 97 using syncable::SPECIFICS;
202 const sync_pb::EntitySpecifics& specifics, Cryptographer* crypto) {
203 if (!specifics.HasExtension(sync_pb::password))
206 specifics.GetExtension(sync_pb::password);
219 const sync_pb::EntitySpecifics& specifics = local
220 entry->Get(syncable::SPECIFICS);
221 if (specifics.HasExtension(sync_pb::password)) {
224 specifics, GetTransaction()->GetCryptographer()));
232 if (!specifics.has_encrypted())
236 specifics.encrypted()
251 const sync_pb::EntitySpecifics& specifics = entry->Get(SPECIFICS); local
750 sync_pb::EntitySpecifics specifics; local
1103 const sync_pb::EntitySpecifics& specifics = GetEntry()->Get(SPECIFICS); local
    [all...]
process_commit_response_command_unittest.cc 107 entry.Put(syncable::SPECIFICS, default_specifics);
155 entity->mutable_specifics()->CopyFrom(entry.Get(syncable::SPECIFICS));
syncer_util.cc 60 using syncable::SPECIFICS;
293 const sync_pb::EntitySpecifics& specifics = entry->Get(SERVER_SPECIFICS); local
294 if (specifics.HasExtension(sync_pb::nigori)) {
296 specifics.GetExtension(sync_pb::nigori);
336 if (specifics.has_encrypted() &&
337 !cryptographer->CanDecrypt(specifics.encrypted())) {
340 } else if (specifics.HasExtension(sync_pb::password)) {
343 specifics.GetExtension(sync_pb::password);
431 target->Put(SERVER_SPECIFICS, update.specifics());
510 if (entry->Get(SPECIFICS).SerializeAsString() !
    [all...]
apply_updates_command_unittest.cc 75 const sync_pb::EntitySpecifics& specifics,
88 entry.Put(syncable::SERVER_SPECIFICS, specifics);
119 entry.Put(syncable::SPECIFICS, default_specifics);
232 sync_pb::EntitySpecifics specifics; local
237 specifics.MutableExtension(sync_pb::password)->mutable_encrypted());
238 CreateUnappliedNewItem("item", specifics, false);
254 sync_pb::EntitySpecifics specifics; local
255 specifics.MutableExtension(sync_pb::password);
256 CreateUnappliedNewItem("item", specifics, false);
273 sync_pb::EntitySpecifics specifics; local
297 sync_pb::EntitySpecifics specifics; local
337 sync_pb::EntitySpecifics specifics; local
344 specifics, true); local
405 sync_pb::EntitySpecifics specifics; local
412 specifics, true); local
502 sync_pb::EntitySpecifics specifics; local
509 specifics, true); local
    [all...]
syncapi_unittest.cc 141 sync_pb::EntitySpecifics specifics; local
142 syncable::AddDefaultExtensionValue(model_type, &specifics);
158 entry.Put(syncable::SERVER_SPECIFICS, specifics);
162 entry.Put(syncable::SPECIFICS, specifics);
502 browser_sync::EntitySpecificsToValue(record.specifics));
504 *node_value, "specifics");
532 child_specifics = node.GetEntry()->Get(syncable::SPECIFICS);
541 record.specifics = child_specifics;
553 record.specifics = child_specifics
    [all...]
  /external/chromium/chrome/browser/sync/
abstract_profile_sync_service_test.cc 35 using syncable::SPECIFICS;
91 sync_pb::EntitySpecifics specifics; local
92 syncable::AddDefaultExtensionValue(model_type, &specifics);
93 node.Put(SPECIFICS, specifics);
js_sync_manager_observer_unittest.cc 241 changes[i].specifics = node.GetEntry()->Get(syncable::SPECIFICS);
profile_sync_service_typed_url_unittest.cc 62 using syncable::SPECIFICS;
profile_sync_service_autofill_unittest.cc 75 using syncable::SPECIFICS;
571 item.Put(SPECIFICS, entity_specifics);
    [all...]
profile_sync_service_password_unittest.cc 58 using syncable::SPECIFICS;
  /external/chromium/chrome/browser/sync/glue/
autofill_profile_model_associator_unittest.cc 100 sync_pb::EntitySpecifics specifics; local
103 specifics.MutableExtension(sync_pb::autofill_profile);
115 kernel.put(syncable::SPECIFICS, specifics);
181 sync_pb::EntitySpecifics specifics; local
184 specifics.MutableExtension(sync_pb::autofill_profile);
190 kernel.put(syncable::SPECIFICS, specifics);

Completed in 157 milliseconds