Searched refs:wifi_provider (Results 1 - 11 of 11) sorted by relevance

/system/connectivity/shill/
H A Ddefault_profile.h70 bool UpdateWiFiProvider(const WiFiProvider& wifi_provider) override;
H A Dmock_profile.h25 #include "shill/wifi/wifi_provider.h"
47 MOCK_METHOD1(UpdateWiFiProvider, bool(const WiFiProvider& wifi_provider));
H A Ddefault_profile_unittest.cc405 MockWiFiProvider wifi_provider; local
410 EXPECT_CALL(wifi_provider, Save(storage.get())).WillOnce(Return(false));
412 EXPECT_FALSE(profile_->UpdateWiFiProvider(wifi_provider));
418 EXPECT_CALL(wifi_provider, Save(storage.get())).WillOnce(Return(true));
420 EXPECT_FALSE(profile_->UpdateWiFiProvider(wifi_provider));
426 EXPECT_CALL(wifi_provider, Save(storage.get())).WillOnce(Return(true));
428 EXPECT_TRUE(profile_->UpdateWiFiProvider(wifi_provider));
H A Ddefault_profile.cc41 #include "shill/wifi/wifi_provider.h"
224 bool DefaultProfile::UpdateWiFiProvider(const WiFiProvider& wifi_provider) { argument
225 return wifi_provider.Save(storage()) && storage()->Flush();
H A Dprofile.h159 // Clobbers persisted notion of |wifi_provider| with data from
160 // |wifi_provider|. Returns true if |wifi_provider| was found and updated,
162 // wifi_provider is persisted only in DefaultProfile.
163 virtual bool UpdateWiFiProvider(const WiFiProvider& wifi_provider);
H A Dmetrics_unittest.cc65 manager_.wifi_provider(),
74 manager_.wifi_provider(),
83 manager_.wifi_provider(),
276 manager_.wifi_provider(),
H A Dprofile.cc411 bool Profile::UpdateWiFiProvider(const WiFiProvider& wifi_provider) { argument
H A Dmanager.h389 WiFiProvider* wifi_provider() const { return wifi_provider_.get(); } function in class:shill::Manager
H A Dmanager_unittest.cc4439 MockWiFiProvider* wifi_provider = new NiceMock<MockWiFiProvider>(); local
4440 manager.wifi_provider_.reset(wifi_provider); // pass ownership
4447 EXPECT_CALL(*wifi_provider, CreateServicesFromProfile(_));
4449 Mock::VerifyAndClearExpectations(wifi_provider);
4468 EXPECT_CALL(*wifi_provider, CreateServicesFromProfile(_)).Times(3);
4470 Mock::VerifyAndClearExpectations(wifi_provider);
/system/connectivity/shill/wifi/
H A Dwifi_unittest.cc668 EXPECT_CALL(*wifi_provider(), OnEndpointRemoved(_))
1303 MockWiFiProvider* wifi_provider() { function in class:shill::WiFiObjectTest
1636 EXPECT_CALL(*wifi_provider(), OnEndpointRemoved(EndpointMatch(endpoint)))
1681 EXPECT_CALL(*wifi_provider(), OnEndpointUpdated(EndpointMatch(endpoint)));
1984 EXPECT_CALL(*wifi_provider(), OnEndpointAdded(_)).Times(5);
2020 EXPECT_CALL(*wifi_provider(), OnEndpointAdded(EndpointMatch(ap0))).Times(1);
2021 EXPECT_CALL(*wifi_provider(), OnEndpointAdded(EndpointMatch(ap1))).Times(1);
2022 EXPECT_CALL(*wifi_provider(), OnEndpointAdded(EndpointMatch(ap2))).Times(1);
2032 Mock::VerifyAndClearExpectations(wifi_provider());
2034 EXPECT_CALL(*wifi_provider(), OnEndpointAdde
[all...]
H A Dwifi.cc71 #include "shill/wifi/wifi_provider.h"
142 provider_(manager->wifi_provider()),

Completed in 1785 milliseconds