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

1 2

  /external/chromium_org/chrome/browser/sync/test/integration/
multiple_client_passwords_sync_test.cc 23 using passwords_helper::SetDecryptionPassphrase;
76 ASSERT_TRUE(SetDecryptionPassphrase(1, kValidPassphrase));
78 ASSERT_TRUE(SetDecryptionPassphrase(2, kValidPassphrase));
108 SetDecryptionPassphrase(1, kValidPassphrase);
118 SetDecryptionPassphrase(2, kAnotherValidPassphrase);
134 ASSERT_TRUE(SetDecryptionPassphrase(2, kValidPassphrase));
passwords_helper.h 55 bool SetDecryptionPassphrase(int index, const std::string& passphrase);
two_client_passwords_sync_test.cc 25 using passwords_helper::SetDecryptionPassphrase;
91 ASSERT_TRUE(SetDecryptionPassphrase(1, kValidPassphrase));
passwords_helper.cc 130 bool SetDecryptionPassphrase(int index, const std::string& passphrase) {
132 test()->GetProfile(index))->SetDecryptionPassphrase(passphrase);
two_client_sessions_sync_test.cc 13 using passwords_helper::SetDecryptionPassphrase;
two_client_bookmarks_sync_test.cc 40 using passwords_helper::SetDecryptionPassphrase;
    [all...]
  /external/chromium_org/sync/internal_api/public/
sync_encryption_handler.h 158 virtual void SetDecryptionPassphrase(const std::string& passphrase) = 0;
  /external/chromium_org/sync/test/
fake_sync_encryption_handler.h 37 virtual void SetDecryptionPassphrase(const std::string& passphrase) OVERRIDE;
fake_sync_encryption_handler.cc 106 void FakeSyncEncryptionHandler::SetDecryptionPassphrase(
  /external/chromium_org/chrome/browser/sync/glue/
sync_backend_host.h 91 // this acts like a call to SetDecryptionPassphrase. If not, the GAIA
105 virtual bool SetDecryptionPassphrase(const std::string& passphrase)
sync_backend_host_mock.cc 41 bool SyncBackendHostMock::SetDecryptionPassphrase(
sync_backend_host_mock.h 50 virtual bool SetDecryptionPassphrase(
sync_backend_host_impl.h 101 virtual bool SetDecryptionPassphrase(const std::string& passphrase)
341 // is called. This way, before the UI calls SetDecryptionPassphrase on the
345 // SetDecryptionPassphrase can still fail after the cached pending keys are
sync_backend_host_core.cc 511 sync_manager_->GetEncryptionHandler()->SetDecryptionPassphrase(
sync_backend_host_impl.cc 207 bool SyncBackendHostImpl::SetDecryptionPassphrase(
210 NOTREACHED() << "SetDecryptionPassphrase must never be called when nigori"
243 // pending. This scenario is a valid race, and SetDecryptionPassphrase can
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_android.h 101 jboolean SetDecryptionPassphrase(JNIEnv* env,
profile_sync_service_mock.h 127 MOCK_METHOD1(SetDecryptionPassphrase, bool(const std::string& passphrase));
profile_sync_service_android.cc 261 jboolean ProfileSyncServiceAndroid::SetDecryptionPassphrase(
265 return sync_service_->SetDecryptionPassphrase(key);
profile_sync_service.h 139 // * SetDecryptionPassphrase(): Attempt to decrypt the user's encrypted data
681 virtual bool SetDecryptionPassphrase(const std::string& passphrase)
    [all...]
profile_sync_service.cc     [all...]
  /external/chromium_org/sync/internal_api/
sync_encryption_handler_impl.h 62 virtual void SetDecryptionPassphrase(const std::string& passphrase) OVERRIDE;
171 // and SetDecryptionPassphrase.
190 // The final step of SetEncryptionPassphrase and SetDecryptionPassphrase that
sync_encryption_handler_impl_unittest.cc 765 encryption_handler()->SetDecryptionPassphrase(kOtherKey);
    [all...]
sync_rollback_manager_base.cc 28 virtual void SetDecryptionPassphrase(const std::string& passphrase)
  /external/chromium_org/chrome/browser/ui/webui/
sync_setup_handler.cc 698 !service->SetDecryptionPassphrase(configuration.passphrase);
731 // SetDecryptionPassphrase() (passphrase_failed == false), but we still
    [all...]
sync_setup_handler_unittest.cc 739 EXPECT_CALL(*mock_pss_, SetDecryptionPassphrase("gaiaPassphrase")).
792 EXPECT_CALL(*mock_pss_, SetDecryptionPassphrase("invalid_passphrase")).
    [all...]

Completed in 158 milliseconds

1 2