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

123

/system/connectivity/shill/
H A Dmock_dhcp_properties.h31 MOCK_CONST_METHOD2(Save, void(StoreInterface* store, const std::string& id));
H A Dephemeral_profile.h48 bool Save() override;
H A Ddefault_profile.h63 bool Save() override;
80 FRIEND_TEST(DefaultProfileTest, Save);
H A Dephemeral_profile.cc70 bool EphemeralProfile::Save() { function in class:shill::EphemeralProfile
H A Dvirtual_device_unittest.cc82 TEST_F(VirtualDeviceTest, Save) {
85 EXPECT_TRUE(device_->Save(&storage));
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 Dmock_eap_credentials.h44 MOCK_CONST_METHOD3(Save, void(
H A Dmock_profile.h48 MOCK_METHOD0(Save, bool());
H A Dvirtual_device.cc55 bool VirtualDevice::Save(StoreInterface* /*storage*/) { function in class:shill::VirtualDevice
H A Dvirtual_device.h49 bool Save(StoreInterface* storage) override;
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 Dprofile_unittest.cc83 EXPECT_TRUE(profile->Save());
238 EXPECT_CALL(*service1.get(), Save(_))
240 EXPECT_CALL(*service2.get(), Save(_))
293 TEST_F(ProfileTest, Save) {
296 EXPECT_CALL(*service1.get(), Save(_)).WillOnce(Return(true));
297 EXPECT_CALL(*service2.get(), Save(_)).WillOnce(Return(true));
302 profile_->Save();
312 EXPECT_CALL(*service1.get(), Save(_))
314 EXPECT_CALL(*service2.get(), Save(_))
H A Ddhcp_properties.h50 virtual void Save(StoreInterface* store, const std::string& id) const;
H A Dmock_device.h57 MOCK_METHOD1(Save, bool(StoreInterface* storage));
H A Dmock_service.h69 MOCK_METHOD1(Save, bool(StoreInterface* store_interface));
92 // Set a string for this Service via |store|. Can be wired to Save() for
H A Dprofile.cc195 return service->Save(storage_.get()) && storage_->Flush();
206 return service->Save(storage_.get()) && storage_->Flush();
244 Save();
380 bool Profile::Save() { function in class:shill::Profile
H A Dstatic_ip_parameters.h48 // Save static IP parameters to a persistent store with id |storage_id|.
49 void Save(StoreInterface* storage, const std::string& storage_id);
/system/connectivity/shill/vpn/
H A Dmock_vpn_driver.h40 MOCK_METHOD3(Save, bool(StoreInterface* storage,
H A Dvpn_service.h47 bool Save(StoreInterface* storage) override;
H A Dvpn_service.cc132 bool VPNService::Save(StoreInterface* storage) { function in class:shill::VPNService
133 return Service::Save(storage) &&
134 driver_->Save(storage, GetStorageIdentifier(), save_credentials());
H A Dvpn_driver.h56 virtual bool Save(StoreInterface* storage,
70 kCredential = 1 << 1, // Save if saving credentials (crypted).
/system/connectivity/shill/wifi/
H A Dmock_wifi_provider.h52 MOCK_CONST_METHOD1(Save, bool(StoreInterface* storage));
/system/connectivity/shill/pppoe/
H A Dpppoe_service.h60 bool Save(StoreInterface* storage) override;
/system/connectivity/shill/wimax/
H A Dwimax_service.h91 bool Save(StoreInterface* storage) override;
/system/update_engine/
H A Dimage_properties_chromeos.cc147 return lsb_release.Save(path);

Completed in 260 milliseconds

123