Searched refs:SetRoamThreshold (Results 1 - 10 of 10) sorted by relevance

/system/connectivity/shill/supplicant/
H A Dmock_supplicant_interface_proxy.h54 MOCK_METHOD1(SetRoamThreshold, bool(uint16_t threshold));
H A Dsupplicant_interface_proxy_interface.h51 virtual bool SetRoamThreshold(uint16_t seconds) = 0;
/system/connectivity/shill/dbus/
H A Dchromeos_supplicant_interface_proxy.h72 bool SetRoamThreshold(uint16_t threshold) override;
H A Dchromeos_supplicant_interface_proxy.cc400 bool ChromeosSupplicantInterfaceProxy::SetRoamThreshold(uint16_t threshold) { function in class:shill::ChromeosSupplicantInterfaceProxy
/system/connectivity/shill/wifi/
H A Dwifi_service.h339 bool SetRoamThreshold(const uint16_t& threshold, Error* error);
H A Dwifi.cc225 &WiFi::SetRoamThreshold);
765 bool WiFi::SetRoamThreshold(const uint16_t& threshold, Error* /*error*/) { function in class:shill::WiFi
768 supplicant_interface_proxy_->SetRoamThreshold(threshold);
1056 supplicant_interface_proxy_->SetRoamThreshold(
1059 supplicant_interface_proxy_->SetRoamThreshold(roam_threshold_db_);
2344 if (!supplicant_interface_proxy_->SetRoamThreshold(roam_threshold_db_)) {
H A Dwifi.h407 bool SetRoamThreshold(const uint16_t& threshold, Error* /*error*/);
H A Dwifi_service.cc138 &WiFiService::SetRoamThreshold,
1285 bool WiFiService::SetRoamThreshold(const uint16_t& threshold, function in class:shill::WiFiService
H A Dwifi_service_unittest.cc202 bool SetRoamThreshold(WiFiServiceRefPtr service, uint16_t threshold) { function in class:shill::WiFiServiceTest
203 return service->SetRoamThreshold(threshold, nullptr);
2241 EXPECT_TRUE(SetRoamThreshold(service, kRoamThreshold16));
2245 EXPECT_TRUE(SetRoamThreshold(service, kRoamThreshold32));
H A Dwifi_unittest.cc762 bool SetRoamThreshold(uint16_t threshold) { function in class:shill::WiFiObjectTest
763 return wifi_->SetRoamThreshold(threshold, nullptr);
1548 SetRoamThreshold(kRoamThreshold16));
1549 EXPECT_TRUE(SetRoamThreshold(kRoamThreshold16));
1554 SetRoamThreshold(kRoamThreshold32));
1555 EXPECT_TRUE(SetRoamThreshold(kRoamThreshold32));
1563 EXPECT_CALL(*GetSupplicantInterfaceProxy(), SetRoamThreshold(_)).Times(0);
1564 EXPECT_TRUE(SetRoamThreshold(kRoamThreshold16));
1578 EXPECT_CALL(*GetSupplicantInterfaceProxy(), SetRoamThreshold(kRoamThreshold));

Completed in 129 milliseconds