OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StoreInterface
(Results
1 - 25
of
60
) sorted by null
1
2
3
/system/connectivity/shill/
store_factory.h
28
class
StoreInterface
;
35
StoreInterface
* CreateStore(const base::FilePath& path);
mock_dhcp_properties.h
31
MOCK_CONST_METHOD2(Save, void(
StoreInterface
* store, const std::string& id));
32
MOCK_METHOD2(Load, void(
StoreInterface
* store, const std::string& id));
store_factory.cc
41
StoreInterface
* StoreFactory::CreateStore(const base::FilePath& path) {
mock_eap_credentials.h
37
MOCK_METHOD2(Load, void(
StoreInterface
* store, const std::string& id));
45
StoreInterface
* store, const std::string& id, bool save_credentials));
pending_activation_store.h
28
class
StoreInterface
;
105
std::unique_ptr<
StoreInterface
> storage_;
virtual_device.h
48
bool Load(
StoreInterface
* storage) override;
49
bool Save(
StoreInterface
* storage) override;
ephemeral_profile.h
32
class
StoreInterface
;
dhcp_properties.h
31
class
StoreInterface
;
47
virtual void Load(
StoreInterface
* store, const std::string& id);
50
virtual void Save(
StoreInterface
* store, const std::string& id) const;
profile.h
45
class
StoreInterface
;
105
void set_storage(
StoreInterface
* storage);
201
virtual
StoreInterface
* GetStorage() {
206
virtual const
StoreInterface
* GetConstStorage() const {
223
StoreInterface
* storage() { return storage_.get(); }
261
std::unique_ptr<
StoreInterface
> storage_;
mock_service.h
66
std::string(const
StoreInterface
& store_interface));
67
MOCK_METHOD1(Load, bool(
StoreInterface
* store_interface));
69
MOCK_METHOD1(Save, bool(
StoreInterface
* store_interface));
94
bool FauxSave(
StoreInterface
* store);
mock_profile.h
49
MOCK_METHOD0(GetStorage,
StoreInterface
*());
50
MOCK_CONST_METHOD0(GetConstStorage, const
StoreInterface
*());
virtual_device.cc
50
bool VirtualDevice::Load(
StoreInterface
* /*storage*/) {
55
bool VirtualDevice::Save(
StoreInterface
* /*storage*/) {
static_ip_parameters.h
31
class
StoreInterface
;
46
void Load(
StoreInterface
* storage, const std::string& storage_id);
49
void Save(
StoreInterface
* storage, const std::string& storage_id);
eap_credentials.h
35
class
StoreInterface
;
80
virtual void Load(
StoreInterface
* store, const std::string& id);
102
virtual void Save(
StoreInterface
* store, const std::string& id,
159
static void SaveString(
StoreInterface
* storage,
mock_device.h
56
MOCK_METHOD1(Load, bool(
StoreInterface
* storage));
57
MOCK_METHOD1(Save, bool(
StoreInterface
* storage));
store_interface.h
29
class
StoreInterface
{
31
virtual ~
StoreInterface
() {}
mock_service.cc
58
bool MockService::FauxSave(
StoreInterface
* store) {
/system/connectivity/shill/vpn/
mock_vpn_driver.h
38
MOCK_METHOD2(Load, bool(
StoreInterface
* storage,
40
MOCK_METHOD3(Save, bool(
StoreInterface
* storage,
vpn_driver.h
38
class
StoreInterface
;
55
virtual bool Load(
StoreInterface
* storage, const std::string& storage_id);
56
virtual bool Save(
StoreInterface
* storage,
vpn_service.h
46
bool Load(
StoreInterface
* storage) override;
47
bool Save(
StoreInterface
* storage) override;
vpn_provider.h
37
class
StoreInterface
;
121
static bool GetServiceParametersFromStorage(const
StoreInterface
* storage,
/system/connectivity/shill/pppoe/
pppoe_service.h
40
class
StoreInterface
;
59
bool Load(
StoreInterface
* storage) override;
60
bool Save(
StoreInterface
* storage) override;
/system/connectivity/shill/ethernet/
ethernet.h
41
class
StoreInterface
;
72
bool Load(
StoreInterface
* storage) override;
73
bool Save(
StoreInterface
* storage) override;
/system/connectivity/shill/wifi/
mock_wifi_provider.h
52
MOCK_CONST_METHOD1(Save, bool(
StoreInterface
* storage));
/system/connectivity/shill/cellular/
cellular_service.h
115
bool Load(
StoreInterface
* storage) override;
116
bool Save(
StoreInterface
* storage) override;
188
static void SaveApn(
StoreInterface
* storage,
192
static void SaveApnField(
StoreInterface
* storage,
197
static void LoadApn(
StoreInterface
* storage,
201
static bool LoadApnField(
StoreInterface
* storage,
Completed in 584 milliseconds
1
2
3