Home
last modified time | relevance | path

Searched refs:SetCryptedString (Results 1 – 17 of 17) sorted by relevance

/system/connectivity/shill/
Dstub_storage.h109 bool SetCryptedString(const std::string& group, in SetCryptedString() function
Dmock_store.h85 MOCK_METHOD3(SetCryptedString, bool(const std::string& group,
Dstore_interface.h164 virtual bool SetCryptedString(const std::string& group,
Dfake_store.h88 bool SetCryptedString(const std::string& group,
Dkey_file_store.h88 bool SetCryptedString(const std::string& group,
Djson_store_unittest.cc163 EXPECT_TRUE(store_->SetCryptedString("group_a", "knob_1", our_value)); in TEST_F()
176 EXPECT_TRUE(store_->SetCryptedString("group_a", "knob_1", our_value)); in TEST_F()
223 store_->SetCryptedString("group_a", "crypted_string_knob", "s3kr!t")); in TEST_F()
347 EXPECT_TRUE(store_->SetCryptedString("group_a", "knob_1", "s3kr!t")); in TEST_F()
988 store_->SetCryptedString("group_a", "cryptedstring_knob", "s3kr!t"); in TEST_F()
Deap_credentials_unittest.cc297 EXPECT_CALL(store, SetCryptedString(_, _, _)).Times(0); in TEST_F()
308 EXPECT_CALL(store, SetCryptedString( in TEST_F()
312 EXPECT_CALL(store, SetCryptedString( in TEST_F()
Djson_store.h89 bool SetCryptedString(const std::string& group,
Dfake_store.cc206 bool FakeStore::SetCryptedString( in SetCryptedString() function in shill::FakeStore
Dkey_file_store.cc384 bool KeyFileStore::SetCryptedString(const string& group, in SetCryptedString() function in shill::KeyFileStore
Dkey_file_store_unittest.cc637 TEST_F(KeyFileStoreTest, SetCryptedString) { in TEST_F() argument
641 ASSERT_TRUE(store_->SetCryptedString(kGroup, kKey, kPlainText)); in TEST_F()
Djson_store.cc622 bool JsonStore::SetCryptedString( in SetCryptedString() function in shill::JsonStore
Dservice.cc1437 storage->SetCryptedString(id, key, value); in SaveString()
Dservice_unittest.cc632 EXPECT_CALL(storage, SetCryptedString(storage_id_, kKey, kData)) in TEST_F()
/system/connectivity/shill/vpn/
Dvpn_driver_unittest.cc252 SetCryptedString(kStorageID, kPasswordProperty, kPassword)) in TEST_F()
254 EXPECT_CALL(storage, SetCryptedString(_, kOTPProperty, _)).Times(0); in TEST_F()
271 EXPECT_CALL(storage, SetCryptedString(_, kPasswordProperty, _)).Times(0); in TEST_F()
Dvpn_driver.cc121 storage->SetCryptedString(storage_id, property, value); in Save()
/system/connectivity/shill/wifi/
Dwifi_service.cc413 storage->SetCryptedString(id, kStoragePassphrase, passphrase_); in Save()