Home
last modified time | relevance | path

Searched refs:SetChannel (Results 1 – 18 of 18) sorted by relevance

/system/connectivity/apmanager/
Dconfig_unittest.cc242 config_->SetChannel(k24GHzChannel); in TEST_F()
255 config_->SetChannel(k24GHzChannel); in TEST_F()
284 config_->SetChannel(k24GHzChannel); in TEST_F()
302 config_->SetChannel(k24GHzChannel); in TEST_F()
331 config_->SetChannel(k24GHzChannel);
351 config_->SetChannel(k24GHzChannel);
379 config_->SetChannel(k5GHzChannel);
395 config_->SetChannel(k24GHzChannel);
413 config_->SetChannel(k24GHzChannel); in TEST_F()
Dconfig_adaptor_interface.h48 virtual void SetChannel(uint16_t channel) = 0;
Dfake_config_adaptor.cc79 void FakeConfigAdaptor::SetChannel(uint16_t channel) { in SetChannel() function in apmanager::FakeConfigAdaptor
Dconfig.cc102 SetChannel(kPropertyDefaultChannel); in Config()
334 void Config::SetChannel(uint16_t channel) { in SetChannel() function in apmanager::Config
335 adaptor_->SetChannel(channel); in SetChannel()
Dfake_config_adaptor.h46 void SetChannel(uint16_t channel) override;
Dconfig.h73 void SetChannel(uint16_t channel);
/system/update_engine/
Dcommon_service_unittest.cc74 EXPECT_TRUE(common_service_.SetChannel(&error_, "stable-channel", true)); in TEST_F()
88 EXPECT_TRUE(common_service_.SetChannel(&error_, "beta-channel", true)); in TEST_F()
99 EXPECT_FALSE(common_service_.SetChannel(&error_, "foo-channel", true)); in TEST_F()
Ddbus_service.cc88 bool DBusUpdateEngineService::SetChannel(ErrorPtr* error, in SetChannel() function in chromeos_update_engine::DBusUpdateEngineService
91 return common_->SetChannel(error, in_target_channel, in_is_powerwash_allowed); in SetChannel()
Dbinder_service_brillo.cc104 Status BinderUpdateEngineBrilloService::SetChannel( in SetChannel() function in chromeos_update_engine::BinderUpdateEngineBrilloService
106 return CallCommonHandler(&UpdateEngineService::SetChannel, in SetChannel()
Dcommon_service.h83 bool SetChannel(brillo::ErrorPtr* error,
Ddbus_service.h82 bool SetChannel(brillo::ErrorPtr* error,
Dbinder_service_brillo.h67 android::binder::Status SetChannel(const android::String16& target_channel,
Dcommon_service.cc143 bool UpdateEngineService::SetChannel(ErrorPtr* error, in SetChannel() function in chromeos_update_engine::UpdateEngineService
/system/update_engine/binder_bindings/android/brillo/
DIUpdateEngine.aidl29 void SetChannel(in String target_channel, in boolean powewash); in SetChannel() method
/system/connectivity/apmanager/dbus/
Dconfig_dbus_adaptor.cc150 void ConfigDBusAdaptor::SetChannel(uint16_t channel) { in SetChannel() function in apmanager::ConfigDBusAdaptor
151 ConfigAdaptor::SetChannel(channel); in SetChannel()
Dconfig_dbus_adaptor.h71 void SetChannel(uint16_t channel) override;
/system/update_engine/client_library/
Dclient_binder.cc194 return service_->SetChannel(String16{in_target_channel.c_str()}, in SetTargetChannel()
Dclient_dbus.cc213 return proxy_->SetChannel(in_target_channel, allow_powerwash, nullptr); in SetTargetChannel()