Home
last modified time | relevance | path

Searched refs:eap_ (Results 1 – 10 of 10) sorted by relevance

/system/connectivity/shill/
Deap_credentials_unittest.cc58 eap_.PopulateSupplicantProperties(&certificate_file_, &params_); in PopulateSupplicantProperties()
62 eap_.anonymous_identity_ = anonymous_identity; in SetAnonymousIdentity()
65 eap_.ca_cert_nss_ = ca_cert_nss; in SetCACertNSS()
68 eap_.ca_cert_pem_ = ca_cert_pem; in SetCACertPEM()
71 eap_.client_cert_ = client_cert; in SetClientCert()
74 eap_.cert_id_ = cert_id; in SetCertId()
77 eap_.ca_cert_id_ = ca_cert_id; in SetCACertId()
80 eap_.eap_ = eap; in SetEap()
83 eap_.identity_ = identity; in SetIdentity()
86 eap_.inner_eap_ = inner_eap; in SetInnerEap()
[all …]
Deap_credentials.cc117 KeyVal(WPASupplicant::kNetworkPropertyEapEap, eap_.c_str()), in PopulateSupplicantProperties()
213 store->RegisterString(kEapMethodProperty, &eap_); in InitPropertyStore()
261 if (eap_.empty() || eap_ == kEapMethodTLS) { in IsConnectable()
271 if (eap_.empty() || eap_ != kEapMethodTLS) { in IsConnectable()
310 storage->GetString(id, kStorageEapEap, &eap_); in Load()
321 Metrics::EapOuterProtocolStringToEnum(eap_); in OutputConnectionMetrics()
420 Service::SaveString(storage, id, kStorageEapEap, eap_, false, true); in Save()
456 eap_ = ""; in Reset()
497 return (eap_.empty() || eap_ == kEapMethodTLS || in ClientAuthenticationUsesCryptoToken()
Deap_credentials.h203 std::string eap_; variable
Dservice.h427 virtual const EapCredentials* eap() const { return eap_.get(); } in eap()
498 EapCredentials* mutable_eap() { return eap_.get(); } in mutable_eap()
858 std::unique_ptr<EapCredentials> eap_; variable
Dservice_unittest.cc98 eap_(new MockEapCredentials()), in ServiceTest()
109 service_->eap_.reset(eap_); // Passes ownership. in ServiceTest()
229 MockEapCredentials* eap_; // Owned by |service_|. member in shill::ServiceTest
496 Mock::VerifyAndClearExpectations(eap_); in TEST_F()
544 EXPECT_CALL(*eap_, Load(&storage, storage_id_)).Times(AnyNumber()); in TEST_F()
671 EXPECT_CALL(*eap_, Save(&storage, storage_id_, true)); in TEST_F()
693 EXPECT_CALL(*eap_, Save(&storage, storage_id_, true)).Times(2); in TEST_F()
722 EXPECT_CALL(*eap_, Save(&storage, storage_id_, true)).Times(2); in TEST_F()
752 EXPECT_CALL(*eap_, Load(&storage, storage_id_)); in TEST_F()
767 EXPECT_CALL(*eap_, Reset()); in TEST_F()
[all …]
Dmetrics_unittest.cc88 eap_(new MockEapCredentials()), in MetricsTest()
100 eap_wifi_service_->eap_.reset(eap_); // Passes ownership. in SetUp()
141 MockEapCredentials* eap_; // Owned by |eap_wifi_service_|. member in shill::MetricsTest
265 EXPECT_CALL(*eap_, OutputConnectionMetrics(&metrics_, Technology::kWifi)); in TEST_F()
Dservice.cc869 CHECK(eap && !eap_); in SetEapCredentials()
871 eap_.reset(eap); in SetEapCredentials()
872 eap_->InitPropertyStore(mutable_store()); in SetEapCredentials()
/system/connectivity/shill/wimax/
Dwimax_service_unittest.cc74 eap_(new MockEapCredentials()) { in WiMaxServiceTest()
78 service_->eap_.reset(eap_); // Passes ownership. in WiMaxServiceTest()
111 MockEapCredentials* eap_; // Owned by |service_|. member in shill::WiMaxServiceTest
116 EXPECT_CALL(*eap_, PopulateWiMaxProperties(&parameters)); in TEST_F()
181 EXPECT_CALL(*eap_, IsConnectableUsingPassphrase()) in TEST_F()
203 Mock::VerifyAndClearExpectations(eap_); in TEST_F()
204 EXPECT_CALL(*eap_, set_password("")); in TEST_F()
205 EXPECT_CALL(*eap_, IsConnectableUsingPassphrase()) in TEST_F()
276 EXPECT_CALL(*eap_, set_password(_)).Times(0); in TEST_F()
293 EXPECT_CALL(*eap_, Reset()); in TEST_F()
[all …]
/system/connectivity/shill/wifi/
Dwifi_service_unittest.cc101 service->eap_.reset(eap); // Passes ownership. in SetMockEap()
Dwifi_unittest.cc3828 service->eap_.reset(eap); // Passes ownership. in TEST_F()