Home
last modified time | relevance | path

Searched refs:shill_property_handler_ (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/chromeos/network/
Dshill_property_handler_unittest.cc200 shill_property_handler_.reset(); in TearDown()
265 shill_property_handler_.reset( in SetupShillPropertyHandler()
267 shill_property_handler_->Init(); in SetupShillPropertyHandler()
295 scoped_ptr<internal::ShillPropertyHandler> shill_property_handler_; member in chromeos::ShillPropertyHandlerTest
306 EXPECT_TRUE(shill_property_handler_->IsTechnologyAvailable(shill::kTypeWifi)); in TEST_F()
307 EXPECT_TRUE(shill_property_handler_->IsTechnologyEnabled(shill::kTypeWifi)); in TEST_F()
333 EXPECT_TRUE(shill_property_handler_->IsTechnologyAvailable( in TEST_F()
335 EXPECT_FALSE(shill_property_handler_->IsTechnologyEnabled(shill::kTypeWifi)); in TEST_F()
344 EXPECT_TRUE(shill_property_handler_->IsTechnologyEnabled(shill::kTypeWifi)); in TEST_F()
491 shill_property_handler_->UpdateManagerProperties(); in TEST_F()
[all …]
Dnetwork_state_handler.cc70 shill_property_handler_.reset(new internal::ShillPropertyHandler(this)); in InitShillPropertyHandler()
71 shill_property_handler_->Init(); in InitShillPropertyHandler()
105 if (shill_property_handler_->IsTechnologyEnabled(technology)) in GetTechnologyState()
107 else if (shill_property_handler_->IsTechnologyEnabling(technology)) in GetTechnologyState()
109 else if (shill_property_handler_->IsTechnologyUninitialized(technology)) in GetTechnologyState()
111 else if (shill_property_handler_->IsTechnologyAvailable(technology)) in GetTechnologyState()
128 if (!shill_property_handler_->IsTechnologyAvailable(*technology)) in SetTechnologyEnabled()
132 shill_property_handler_->SetTechnologyEnabled( in SetTechnologyEnabled()
341 shill_property_handler_->RequestScan(); in RequestScan()
355 shill_property_handler_->AsWeakPtr())); in ConnectToBestWifiNetwork()
[all …]
Dnetwork_state_handler.h369 scoped_ptr<internal::ShillPropertyHandler> shill_property_handler_; variable