/external/chromium_org/sync/syncable/ |
nigori_util.h | 52 // Same as EntryNeedsEncryption, but looks at specifics. 55 const sync_pb::EntitySpecifics& specifics);
|
/external/chromium/chrome/browser/sync/syncable/ |
model_type.h | 86 sync_pb::EntitySpecifics* specifics); 91 // entity specifics. 97 ModelType GetModelTypeFromSpecifics(const sync_pb::EntitySpecifics& specifics);
|
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...] |
/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);
|
extension_change_processor.cc | 105 sync_pb::ExtensionSpecifics specifics; local 118 specifics = (*traits_.extension_specifics_getter)(node); 123 change.specifics, &specifics)) { 125 error << "Could not get extension specifics from deleted node " 134 if (!GetExtensionSyncData(specifics, &sync_data)) { 137 std::string("Invalid server specifics: ") + 138 ExtensionSpecificsToString(specifics);
|
session_change_processor.cc | 183 const sync_pb::SessionSpecifics& specifics = node.GetSessionSpecifics(); local 185 specifics.session_tag()); 201 const sync_pb::SessionSpecifics& specifics( 203 if (specifics.session_tag() == 214 session_model_associator_->AssociateForeignSpecifics(specifics, mtime);
|
/external/chromium_org/chrome/browser/sync/glue/ |
bookmark_change_processor.cc | 314 const sync_pb::EntitySpecifics& specifics = local 316 CHECK(specifics.has_encrypted()); 317 const bool can_decrypt = crypto->CanDecrypt(specifics.encrypted()); 703 const sync_pb::BookmarkSpecifics& specifics = local 706 model->SetURL(node, GURL(specifics.url())); 708 if (specifics.has_creation_time_us()) { 711 base::Time::FromInternalValue(specifics.creation_time_us())); 746 const sync_pb::BookmarkSpecifics& specifics = local 748 const int64 create_time_internal = specifics.creation_time_us(); 753 GURL(specifics.url()), create_time) 769 const sync_pb::BookmarkSpecifics& specifics = local 796 const sync_pb::BookmarkSpecifics& specifics = local 810 sync_pb::BookmarkSpecifics specifics = sync_node->GetBookmarkSpecifics(); local [all...] |
synced_device_tracker.h | 70 // Helper to write specifics into our node. Also useful for testing. 75 void WriteDeviceInfo(const sync_pb::DeviceInfoSpecifics& specifics,
|
tab_node_pool.cc | 92 sync_pb::SessionSpecifics specifics; local 93 specifics.set_session_tag(machine_tag_); 94 specifics.set_tab_node_id(tab_node_id); 95 tab_node.SetSessionSpecifics(specifics);
|
typed_url_change_processor.cc | 135 const sync_pb::EntitySpecifics& specifics = local 137 CHECK(specifics.has_encrypted()); 138 const bool can_decrypt = crypto->CanDecrypt(specifics.encrypted()); 269 DCHECK(it->specifics.has_typed_url()) << 270 "Typed URL delete change does not have necessary specifics."; 271 GURL url(it->specifics.typed_url().url());
|
/external/chromium_org/chrome/browser/managed_mode/ |
managed_user_sync_service_unittest.cc | 131 ::sync_pb::EntitySpecifics specifics; local 132 specifics.mutable_managed_user()->set_id(id); 133 specifics.mutable_managed_user()->set_name(name); 134 specifics.mutable_managed_user()->set_acknowledged(true); 136 specifics.mutable_managed_user()->set_chrome_avatar(chrome_avatar); 138 return SyncData::CreateRemoteData(++sync_data_id_, specifics, base::Time());
|
managed_user_sync_service.cc | 50 ::sync_pb::EntitySpecifics specifics; local 51 specifics.mutable_managed_user()->set_id(id); 52 specifics.mutable_managed_user()->set_name(name); 54 specifics.mutable_managed_user()->set_chrome_avatar(chrome_avatar); 56 specifics.mutable_managed_user()->set_chromeos_avatar(chromeos_avatar); 58 specifics.mutable_managed_user()->set_master_key(master_key); 60 specifics.mutable_managed_user()->set_acknowledged(true); 61 return SyncData::CreateLocalData(id, name, specifics);
|
managed_user_registration_utility_unittest.cc | 208 ::sync_pb::EntitySpecifics specifics = it->sync_data().GetSpecifics(); local 209 EXPECT_FALSE(specifics.managed_user().acknowledged()); 210 specifics.mutable_managed_user()->set_acknowledged(true); 214 specifics,
|
/external/chromium_org/chrome/browser/ui/app_list/ |
app_list_syncable_service.h | 111 // Creates or updates a SyncItem from |specifics|. Returns true if an item 113 bool CreateOrUpdateSyncItem(const sync_pb::AppListSpecifics& specifics); 115 // Deletes a SyncItem matching |specifics|. 116 void DeleteSyncItem(const sync_pb::AppListSpecifics& specifics);
|
/external/chromium_org/sync/internal_api/public/base/ |
model_type.h | 156 sync_pb::EntitySpecifics* specifics); 161 // entity specifics. 169 const sync_pb::EntitySpecifics& specifics);
|
/external/chromium_org/chrome/browser/notifications/sync_notifier/ |
chrome_notifier_service.cc | 244 // Construct the sync_data using the specifics from the notification. 255 sync_pb::SyncedNotificationSpecifics specifics = local 259 if (!specifics.has_coalesced_notification() || 260 !specifics.coalesced_notification().has_key() || 261 !specifics.coalesced_notification().has_read_state()) { 264 << specifics.has_coalesced_notification() 265 << " has key? " << specifics.coalesced_notification().has_key() 267 << specifics.coalesced_notification().has_read_state(); 273 specifics.coalesced_notification().read_state()) == 275 specifics.coalesced_notification().has_render_info()) [all...] |
sync_notifier_test_utils.cc | 82 // Get a writeable pointer to the sync notifications specifics inside the 83 // entity specifics. 84 sync_pb::SyncedNotificationSpecifics* specifics = local 89 specifics->mutable_coalesced_notification();
|
/external/chromium_org/chrome/browser/extensions/api/storage/ |
setting_sync_data.h | 79 // Initializes internal_ from extension specifics. 82 const sync_pb::ExtensionSettingSpecifics& specifics);
|
/external/chromium_org/sync/engine/ |
apply_control_data_updates_unittest.cc | 83 sync_pb::EntitySpecifics specifics; local 84 sync_pb::NigoriSpecifics* nigori = specifics.mutable_nigori(); 88 ModelTypeToRootTag(NIGORI), specifics, true); local 150 sync_pb::EntitySpecifics specifics; local 151 sync_pb::NigoriSpecifics* nigori = specifics.mutable_nigori(); 156 ModelTypeToRootTag(NIGORI), specifics, true); local 267 sync_pb::EntitySpecifics specifics; local 268 sync_pb::NigoriSpecifics* nigori = specifics.mutable_nigori(); 273 ModelTypeToRootTag(NIGORI), specifics, true); local 326 // Create server specifics with pending keys, new encrypted types 864 sync_pb::EntitySpecifics specifics; local 881 sync_pb::EntitySpecifics specifics; local [all...] |
/external/chromium_org/sync/internal_api/ |
change_reorder_buffer.cc | 143 const sync_pb::EntitySpecifics& specifics) { 144 specifics_[id] = specifics; 175 record.specifics = specifics_[record.id]; 198 record.specifics = specifics_[record.id];
|
/frameworks/base/core/java/android/view/ |
Menu.java | 255 * for more * details on the <var>caller</var>, <var>specifics</var>, and 280 * @param specifics Specific items to place first as defined by 286 * that were generated for each of the <var>specifics</var> that were 296 ComponentName caller, Intent[] specifics,
|
/external/chromium_org/sync/tools/testserver/ |
chromiumsync.py | 210 entry_types = GetEntryTypesFromSpecifics(entry.specifics) 221 def GetEntryTypesFromSpecifics(specifics): 224 If the specifics have more than one recognized data type field (as commonly 230 specifics: A EntitySpecifics protobuf message whose extensions to 234 recognized extension of the specifics message. 238 if specifics.HasField(field_descriptor.name)] 312 specifics = sync_pb2.EntitySpecifics() 315 getattr(specifics, descriptor.name).SetInParent() 316 return specifics 707 entry.specifics.CopyFrom(GetDefaultEntitySpecifics(spec.sync_type) [all...] |
/external/chromium_org/chrome/browser/spellchecker/ |
spellcheck_custom_dictionary.cc | 355 sync_pb::EntitySpecifics specifics; local 356 specifics.mutable_dictionary()->set_word(word); 357 data.push_back(syncer::SyncData::CreateLocalData(word, word, specifics)); 495 sync_pb::EntitySpecifics specifics; local 496 specifics.mutable_dictionary()->set_word(word); 500 syncer::SyncData::CreateLocalData(word, word, specifics))); 507 sync_pb::EntitySpecifics specifics; local 508 specifics.mutable_dictionary()->set_word(word); 512 syncer::SyncData::CreateLocalData(word, word, specifics)));
|
spellcheck_custom_dictionary_unittest.cc | 50 sync_pb::EntitySpecifics specifics; local 51 specifics.mutable_dictionary()->set_word(word); 52 data.push_back(syncer::SyncData::CreateLocalData(word, word, specifics)); 400 sync_pb::EntitySpecifics specifics; local 401 specifics.mutable_dictionary()->set_word(word); 405 syncer::SyncData::CreateLocalData(word, word, specifics))); 411 sync_pb::EntitySpecifics specifics; local 412 specifics.mutable_dictionary()->set_word(word); 416 syncer::SyncData::CreateLocalData(word, word, specifics))); 421 sync_pb::EntitySpecifics specifics; local 431 sync_pb::EntitySpecifics specifics; local 441 sync_pb::EntitySpecifics specifics; local [all...] |
/external/chromium_org/chrome/browser/prefs/ |
pref_model_associator.cc | 41 sync_pb::EntitySpecifics* specifics) { 43 DCHECK(!specifics->has_preference()); 44 return specifics->mutable_priority_preference()->mutable_preference(); 46 DCHECK(!specifics->has_priority_preference()); 47 return specifics->mutable_preference(); 352 sync_pb::EntitySpecifics specifics; local 354 GetMutableSpecifics(type_, &specifics); 358 *sync_data = syncer::SyncData::CreateLocalData(name, name, specifics);
|