/external/libweave/src/ |
config_unittest.cc | 39 const Config::Settings& GetSettings() const { return config_->GetSettings(); } 42 return default_.GetSettings(); 60 EXPECT_EQ("", GetSettings().client_id); 61 EXPECT_EQ("", GetSettings().client_secret); 62 EXPECT_EQ("", GetSettings().api_key); 63 EXPECT_EQ("https://accounts.google.com/o/oauth2/", GetSettings().oauth_url); 64 EXPECT_EQ("https://www.googleapis.com/weave/v1/", GetSettings().service_url); 65 EXPECT_EQ("talk.google.com:5223", GetSettings().xmpp_endpoint); 66 EXPECT_EQ("", GetSettings().oem_name) [all...] |
base_api_handler.cc | 101 OnConfigChanged(device_->GetSettings()); 103 const auto& settings = device_info_->GetSettings(); 132 const auto& settings = device_info_->GetSettings(); 177 const auto& settings = device_info_->GetSettings();
|
device_registration_info.cc | 259 !GetSettings().cloud_id.empty() && !HaveRegistrationCredentials(); 277 return BuildURL(GetSettings().service_url, subpath, params); 283 CHECK(!GetSettings().cloud_id.empty()) << "Must have a valid device ID"; 284 return BuildURL(GetSettings().service_url, 285 "devices/" + GetSettings().cloud_id + "/" + subpath, params); 291 return BuildURL(GetSettings().oauth_url, subpath, params); 319 return !GetSettings().refresh_token.empty() && 320 !GetSettings().cloud_id.empty() && 321 !GetSettings().robot_account.empty(); 381 {"refresh_token", GetSettings().refresh_token} [all...] |
base_api_handler_unittest.cc | 62 EXPECT_CALL(device_, GetSettings()) 63 .WillRepeatedly(ReturnRef(dev_reg_->GetSettings())); 182 const Settings& settings = dev_reg_->GetSettings(); 249 const Settings& config = dev_reg_->GetSettings();
|
device_registration_info_unittest.cc | 345 EXPECT_EQ(test_data::kCloudId, dev_reg_->GetSettings().cloud_id); 556 EXPECT_EQ(test_data::kCloudId, dev_reg_->GetSettings().cloud_id); 558 dev_reg_->GetSettings().refresh_token); 560 dev_reg_->GetSettings().robot_account); 578 EXPECT_EQ(test_data::kCloudId, dev_reg_->GetSettings().cloud_id); 580 dev_reg_->GetSettings().refresh_token); 582 dev_reg_->GetSettings().robot_account);
|
config.h | 47 const Config::Settings& GetSettings() const;
|
device_manager.h | 38 const Settings& GetSettings() const override;
|
device_manager.cc | 60 const Settings& DeviceManager::GetSettings() const { 61 return device_info_->GetSettings();
|
device_registration_info.h | 119 const Config::Settings& GetSettings() const { return config_->GetSettings(); }
|
/system/bt/service/ |
daemon.h | 54 virtual Settings* GetSettings() const = 0;
|
daemon.cpp | 52 Settings* GetSettings() const override {
|
/system/bt/service/test/ |
mock_daemon.h | 31 MOCK_CONST_METHOD0(GetSettings, Settings*());
|
ipc_linux_unittest.cpp | 54 ON_CALL(*mock_daemon, GetSettings()).WillByDefault(Return(&settings_));
|
/external/libweave/src/privet/ |
security_manager.cc | 77 CHECK_EQ(GetSettings().embedded_code.empty(), 78 std::find(GetSettings().pairing_modes.begin(), 79 GetSettings().pairing_modes.end(), 81 GetSettings().pairing_modes.end()); 198 return GetSettings().pairing_modes; 236 const Config::Settings& SecurityManager::GetSettings() const { 237 return config_->GetSettings(); 264 const auto& pairing_modes = GetSettings().pairing_modes; 274 CHECK(!GetSettings().embedded_code.empty()); 275 code = GetSettings().embedded_code [all...] |
cloud_delegate.cc | 70 return device_->GetSettings().device_id; 74 CHECK_EQ(5u, device_->GetSettings().model_id.size()); 75 return device_->GetSettings().model_id; 78 std::string GetName() const override { return device_->GetSettings().name; } 81 return device_->GetSettings().description; 85 return device_->GetSettings().location; 95 return device_->GetSettings().oem_name; 99 return device_->GetSettings().model_name; 103 return device_->GetSettings().local_anonymous_access_role; 139 ? device_->GetSettings().cloud_i [all...] |
wifi_bootstrap_manager.cc | 59 if (config_->GetSettings().last_configured_ssid.empty()) { 80 if (!config_->GetSettings().last_configured_ssid.empty()) { 171 const std::string& ssid = config_->GetSettings().test_privet_ssid; 199 return config_->GetSettings().last_configured_ssid; 267 config_->GetSettings().last_configured_ssid.empty()) {
|
auth_manager.cc | 281 SetAuthSecret(config_->GetSettings().secret, 282 config_->GetSettings().root_client_token_owner); 309 if (!config_ || (config_->GetSettings().secret == auth_secret_ && 310 config_->GetSettings().root_client_token_owner == owner)) { 392 auto current = config_->GetSettings().root_client_token_owner;
|
privet_manager.cc | 68 if (wifi && device->GetSettings().wifi_auto_setup_enabled) {
|
security_manager.h | 96 const Config::Settings& GetSettings() const;
|
auth_manager_unittest.cc | 365 config_.GetSettings().root_client_token_owner); 370 config_.GetSettings().root_client_token_owner);
|
/system/bt/service/ipc/ |
ipc_handler_linux.cpp | 50 bluetooth::Daemon::Get()->GetSettings()->android_ipc_socket_suffix(); 52 bluetooth::Daemon::Get()->GetSettings()->create_ipc_socket_path();
|
/external/libweave/include/weave/test/ |
mock_device.h | 21 MOCK_CONST_METHOD0(GetSettings, const Settings&());
|
/external/libweave/examples/daemon/common/ |
daemon.h | 110 LOG(INFO) << "Device registered: " << device->GetSettings().cloud_id;
|
/external/libweave/include/weave/ |
device.h | 39 virtual const Settings& GetSettings() const = 0;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
wpcapi.h | 305 virtual HRESULT STDMETHODCALLTYPE GetSettings( 349 HRESULT (STDMETHODCALLTYPE *GetSettings)( 378 #define IWPCWebSettings_GetSettings(This,pdwSettings) (This)->lpVtbl->GetSettings(This,pdwSettings) 403 return This->lpVtbl->GetSettings(This,pdwSettings);
|