/external/chromium_org/sync/internal_api/ |
debug_info_event_listener.cc | 8 #include "sync/util/cryptographer.h" 105 Cryptographer* cryptographer) { 107 cryptographer_has_pending_keys_ = cryptographer->has_pending_keys(); 108 cryptographer_ready_ = cryptographer->is_ready();
|
sync_manager_impl.cc | 243 Cryptographer* cryptographer) const { 258 if (!AreSpecificsEqual(cryptographer, 506 Cryptographer* cryptographer) { 507 allstatus_.SetCryptographerReady(cryptographer->is_ready()); 508 allstatus_.SetCryptoHasPendingKeys(cryptographer->has_pending_keys()); 825 Cryptographer* cryptographer, const syncable::EntryKernel& original, 834 DecryptPasswordSpecifics(original_specifics, cryptographer)); [all...] |
write_node.cc | 24 #include "sync/util/cryptographer.h" 150 Cryptographer* cryptographer = GetTransaction()->GetCryptographer(); local 167 if (!cryptographer->Encrypt(data, password_specifics->mutable_encrypted())) {
|
/external/chromium_org/sync/syncable/ |
entry.cc | 45 base::DictionaryValue* Entry::ToValue(Cryptographer* cryptographer) const { 49 entry_info->Set("kernel", kernel_->ToValue(cryptographer));
|
directory.cc | 92 Cryptographer* cryptographer) 100 cryptographer_(cryptographer), 875 Cryptographer* Directory::GetCryptographer(const BaseTransaction* trans) { [all...] |
/external/chromium/chrome/browser/sync/engine/ |
syncapi.cc | 73 using browser_sync::Cryptographer; 202 const sync_pb::EntitySpecifics& specifics, Cryptographer* crypto) { 561 Cryptographer* cryptographer = GetTransaction()->GetCryptographer(); local 570 DecryptPasswordSpecifics(GetEntry()->Get(SPECIFICS), cryptographer)); local 573 cryptographer->CanDecryptUsingDefaultKey(old_ciphertext)) { 578 if (!cryptographer->Encrypt(data, new_value.mutable_encrypted())) { 1778 Cryptographer* cryptographer = trans.GetCryptographer(); local 1949 Cryptographer* cryptographer = trans.GetCryptographer(); local 2497 Cryptographer* cryptographer = trans.GetCryptographer(); local [all...] |
syncapi_unittest.cc | 38 #include "chrome/browser/sync/util/cryptographer.h" 45 using browser_sync::Cryptographer; 721 // Set the nigori cryptographer information. 723 Cryptographer* cryptographer = trans.GetCryptographer(); local 724 if (!cryptographer) 727 cryptographer->AddKey(params); 729 cryptographer->GetKeys(nigori.mutable_encrypted()); 733 return cryptographer->is_ready(); [all...] |
syncer_util.cc | 248 Cryptographer* cryptographer) { 290 // We intercept updates to the Nigori node, update the Cryptographer and 298 if (cryptographer->CanDecrypt(nigori.encrypted())) { 299 cryptographer->SetKeys(nigori.encrypted()); 301 cryptographer->SetPendingKeys(nigori.encrypted()); 309 (!cryptographer->is_ready() || 311 cryptographer))) { 315 // because the cryptographer already has the pending keys set, so once 334 // Cryptographer decrypt them [all...] |
/external/chromium_org/chrome/browser/sync/glue/ |
typed_url_change_processor.cc | 133 syncer::Cryptographer* crypto = trans->GetCryptographer(); 143 " Cryptographer thinks typed urls not encrypted, and CanDecrypt" 149 " Cryptographer thinks typed urls are encrypted, and CanDecrypt" 155 " Cryptographer thinks typed urls are encrypted, but CanDecrypt" 161 " Cryptographer thinks typed urls not encrypted, but CanDecrypt"
|
generic_change_processor.cc | 456 syncer::Cryptographer* crypto = trans.GetCryptographer(); 559 // We only access the cryptographer while holding a transaction.
|
sync_backend_host_core.cc | 297 syncer::Cryptographer* cryptographer) {
|
bookmark_change_processor.cc | 312 syncer::Cryptographer* crypto = trans.GetCryptographer(); 322 " Cryptographer thinks bookmarks not encrypted, and CanDecrypt" 328 " Cryptographer thinks bookmarks are encrypted, and CanDecrypt" 334 " Cryptographer thinks bookmarks are encrypted, but CanDecrypt" 340 " Cryptographer thinks bookmarks not encrypted, but CanDecrypt" [all...] |
/external/chromium_org/sync/engine/ |
sync_directory_update_handler_unittest.cc | 685 Cryptographer* cryptographer; local 687 // Storing the cryptographer separately is bad, but for this test we 690 cryptographer = directory()->GetCryptographer(&trans); 694 cryptographer->AddKey(params); 700 cryptographer->Encrypt(data, 767 Cryptographer* cryptographer; local 779 cryptographer = directory()->GetCryptographer(&trans); 782 cryptographer->AddKey(params) [all...] |
get_commit_ids.cc | 18 #include "sync/util/cryptographer.h" 68 Cryptographer* cryptographer = dir->GetCryptographer(trans); local 69 if (cryptographer) { 71 passphrase_missing = cryptographer->has_pending_keys(); 111 // is missing from the cryptographer, or the entry itself wasn't properly 131 // due to the cryptographer not being initialized or the user hasn't
|
syncer_util.cc | 34 #include "sync/util/cryptographer.h" 193 Cryptographer* cryptographer) { 209 !cryptographer->CanDecrypt(specifics.encrypted())) { 219 if (!cryptographer->CanDecrypt(password.encrypted())) {
|
syncer_unittest.cc | 54 #include "sync/util/cryptographer.h" 464 Cryptographer* GetCryptographer(syncable::BaseTransaction* trans) { 617 // Mark bookmarks as encrypted and set the cryptographer to have pending 620 Cryptographer other_cryptographer(&encryptor_); 659 // the cryptographer having pending keys. A would have been resolved 713 Cryptographer other_cryptographer(&encryptor_); 732 // Mark bookmarks and preferences as encrypted and set the cryptographer to [all...] |
/external/chromium_org/chrome/browser/sync/ |
profile_sync_service.cc | 82 #include "sync/util/cryptographer.h" [all...] |