Searched refs:Save (Results 1 - 25 of 63) sorted by path

123

/system/connectivity/shill/cellular/
H A Dcellular.cc168 bool Cellular::Save(StoreInterface* storage) { function in class:shill::Cellular
171 return Device::Save(storage);
1024 // Save and restore |service_| state, as DropConnection calls
H A Dcellular.h107 // Save configuration for the device to |storage|.
108 bool Save(StoreInterface* storage) override;
H A Dcellular_service.cc291 bool CellularService::Save(StoreInterface* storage) { function in class:shill::CellularService
292 // Save properties common to all Services.
293 if (!Service::Save(storage))
H A Dcellular_service.h113 // Overrides Load and Save from parent Service class. We will call
116 bool Save(StoreInterface* storage) override;
/system/connectivity/shill/
H A Ddefault_profile.cc187 bool DefaultProfile::Save() { function in class:shill::DefaultProfile
215 manager()->dhcp_properties().Save(storage(), kStorageId);
216 return Profile::Save();
220 return device->Save(storage()) && storage()->Flush();
225 return wifi_provider.Save(storage()) && storage()->Flush();
H A Ddefault_profile.h63 bool Save() override;
80 FRIEND_TEST(DefaultProfileTest, Save);
H A Ddefault_profile_unittest.cc133 TEST_F(DefaultProfileTest, Save) {
186 EXPECT_CALL(*device_.get(), Save(storage.get())).Times(0);
189 EXPECT_CALL(*dhcp_props.get(), Save(_,_));
193 ASSERT_TRUE(profile_->Save());
375 EXPECT_CALL(*unknown_service, Save(_)) .Times(0);
384 EXPECT_CALL(*ethernet_service, Save(storage.get()))
395 EXPECT_CALL(*device_, Save(storage.get()))
410 EXPECT_CALL(wifi_provider, Save(storage.get())).WillOnce(Return(false));
418 EXPECT_CALL(wifi_provider, Save(storage.get())).WillOnce(Return(true));
426 EXPECT_CALL(wifi_provider, Save(storag
[all...]
H A Ddevice.cc489 bool Device::Save(StoreInterface* storage) { function in class:shill::Device
1498 // Save the DNS servers from ipconfig.
H A Ddevice.h108 // Save the new setting to the profile, if |persist| is true.
267 // Save configuration for the device to |storage|.
268 virtual bool Save(StoreInterface* storage);
395 FRIEND_TEST(DeviceTest, Save);
H A Ddevice_unittest.cc581 TEST_F(DeviceTest, Save) {
590 EXPECT_TRUE(device_->Save(&storage));
2616 EXPECT_TRUE(device->Save(&storage_));
H A Ddhcp_properties.cc93 void DhcpProperties::Save(StoreInterface* storage, const string& id) const { function in class:shill::DhcpProperties
H A Ddhcp_properties.h50 virtual void Save(StoreInterface* store, const std::string& id) const;
H A Ddhcp_properties_unittest.cc206 dhcp_properties_.Save(&storage, kStorageID);
220 dhcp_properties_.Save(&storage, kStorageID);
H A Deap_credentials.cc337 void EapCredentials::Save(StoreInterface* storage, const string& id, function in class:shill::EapCredentials
H A Deap_credentials.h99 // Save EAP properties to |storage| in group |id|. If |save_credentials|
102 virtual void Save(StoreInterface* store, const std::string& id,
H A Deap_credentials_unittest.cc302 eap_.Save(&store, kId, false);
314 eap_.Save(&store, kId, true);
H A Dephemeral_profile.cc70 bool EphemeralProfile::Save() { function in class:shill::EphemeralProfile
H A Dephemeral_profile.h48 bool Save() override;
H A Dmanager.cc304 profile->Save();
350 default_profile->Save();
411 // Save profile data out, and then let the scoped pointer fall out of scope.
412 if (!profile->Save()) {
H A Dmanager.h577 FRIEND_TEST(DefaultProfileTest, Save);
H A Dmanager_unittest.cc856 EXPECT_CALL(*s2.get(), Save(_)).WillOnce(Return(true));
2924 EXPECT_CALL(*profile.get(), Save()).WillOnce(Return(true));
4507 manager->profiles_[0]->Save();
H A Dmock_device.h57 MOCK_METHOD1(Save, bool(StoreInterface* storage));
H A Dmock_dhcp_properties.h31 MOCK_CONST_METHOD2(Save, void(StoreInterface* store, const std::string& id));
/system/connectivity/shill/ethernet/
H A Dethernet.cc194 bool Ethernet::Save(StoreInterface* storage) { function in class:shill::Ethernet
H A Dethernet.h73 bool Save(StoreInterface* storage) override;

Completed in 215 milliseconds

123