Searched refs:UpdateDevice (Results 1 – 15 of 15) sorted by relevance
/system/connectivity/shill/ |
D | mock_profile.h | 46 MOCK_METHOD1(UpdateDevice, bool(const DeviceRefPtr& device));
|
D | default_profile.h | 66 bool UpdateDevice(const DeviceRefPtr& device) override;
|
D | default_profile_unittest.cc | 392 TEST_F(DefaultProfileTest, UpdateDevice) { in TEST_F() argument 399 EXPECT_TRUE(profile_->UpdateDevice(device_)); in TEST_F() 400 EXPECT_FALSE(profile_->UpdateDevice(device_)); in TEST_F()
|
D | mock_manager.h | 60 MOCK_METHOD1(UpdateDevice, void(const DeviceRefPtr& to_update));
|
D | profile.h | 156 virtual bool UpdateDevice(const DeviceRefPtr& device);
|
D | default_profile.cc | 219 bool DefaultProfile::UpdateDevice(const DeviceRefPtr& device) { in UpdateDevice() function in shill::DefaultProfile
|
D | profile_unittest.cc | 479 TEST_F(ProfileTest, UpdateDevice) { in TEST_F() argument 480 EXPECT_FALSE(profile_->UpdateDevice(nullptr)); in TEST_F()
|
D | profile.cc | 406 bool Profile::UpdateDevice(const DeviceRefPtr& device) { in UpdateDevice() function in shill::Profile
|
D | manager.cc | 292 UpdateDevice(device); in Stop() 1248 UpdateDevice(to_manage); in RegisterDevice() 1264 UpdateDevice(to_forget); in DeregisterDevice() 1453 void Manager::UpdateDevice(const DeviceRefPtr& to_update) { in UpdateDevice() function in shill::Manager 1462 if ((*rit)->UpdateDevice(to_update)) { in UpdateDevice()
|
D | manager_unittest.cc | 295 EXPECT_CALL(*profile, UpdateDevice(_)).WillRepeatedly(Return(false)); in AddNamedMockProfileToManager() 613 EXPECT_CALL(*profile, UpdateDevice(device_ref)); in TEST_F() 634 EXPECT_CALL(*profile, UpdateDevice(DeviceRefPtr(mock_devices_[0]))); in TEST_F() 639 EXPECT_CALL(*profile, UpdateDevice(DeviceRefPtr(mock_devices_[1]))); in TEST_F() 2918 UpdateDevice(DeviceRefPtr(mock_devices_[0].get()))) in TEST_F() 3062 TEST_F(ManagerTest, UpdateDevice) { in TEST_F() argument 3073 EXPECT_CALL(*profile0, UpdateDevice(device_ref)).Times(0); in TEST_F() 3074 EXPECT_CALL(*profile1, UpdateDevice(device_ref)).WillOnce(Return(true)); in TEST_F() 3075 EXPECT_CALL(*profile2, UpdateDevice(device_ref)).WillOnce(Return(false)); in TEST_F() 3076 manager()->UpdateDevice(mock_devices_[0]); in TEST_F()
|
D | device.cc | 1244 manager_->UpdateDevice(this); in ResetByteCounters() 1867 manager_->UpdateDevice(this); in SetEnabledChecked()
|
D | manager.h | 164 virtual void UpdateDevice(const DeviceRefPtr& to_update);
|
D | device_unittest.cc | 915 EXPECT_CALL(manager, UpdateDevice(_)); in TEST_F() 2702 EXPECT_CALL(manager_, UpdateDevice(device)); in TEST_F()
|
/system/connectivity/shill/cellular/ |
D | cellular.cc | 967 manager()->UpdateDevice(this); in SetAllowRoaming()
|
D | cellular_unittest.cc | 1424 EXPECT_CALL(*modem_info_.mock_manager(), UpdateDevice(_)); in TEST_F() 1793 EXPECT_CALL(*modem_info_.mock_manager(), UpdateDevice(_)); in TEST_F()
|