OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LoadSettings
(Results
1 - 21
of
21
) sorted by null
/external/libweave/include/weave/provider/
config_store.h
37
// Implementation of
LoadSettings
() method should load previously
40
// std::string FileConfigStore::
LoadSettings
(const std::string& name) {
45
// If data stored encrypted (highly recommended),
LoadSettings
()
77
virtual std::string
LoadSettings
(const std::string& name) = 0;
89
virtual std::string
LoadSettings
() = 0;
/external/libweave/include/weave/provider/test/
mock_config_store.h
40
EXPECT_CALL(*this,
LoadSettings
())
45
EXPECT_CALL(*this,
LoadSettings
(_)).WillRepeatedly(Return(""));
54
MOCK_METHOD1(
LoadSettings
, std::string(const std::string&));
59
MOCK_METHOD0(
LoadSettings
, std::string());
/external/libweave/examples/provider/
file_config_store.h
24
std::string
LoadSettings
(const std::string& name) override;
29
std::string
LoadSettings
() override;
file_config_store.cc
65
std::string FileConfigStore::
LoadSettings
() {
66
return
LoadSettings
("");
69
std::string FileConfigStore::
LoadSettings
(const std::string& name) {
/system/update_engine/payload_generator/
ext2_filesystem.h
55
bool
LoadSettings
(brillo::KeyValueStore* store) const override;
fake_filesystem.h
41
bool
LoadSettings
(brillo::KeyValueStore* store) const override;
48
// Sets the PAYLOAD_MINOR_VERSION key stored by
LoadSettings
(). Use a negative
49
// value to produce an error in
LoadSettings
().
filesystem_interface.h
84
virtual bool
LoadSettings
(brillo::KeyValueStore* store) const = 0;
raw_filesystem.h
44
bool
LoadSettings
(brillo::KeyValueStore* store) const override {
fake_filesystem.cc
53
bool FakeFilesystem::
LoadSettings
(brillo::KeyValueStore* store) const {
ext2_filesystem_unittest.cc
188
EXPECT_FALSE(fs->
LoadSettings
(&store));
198
EXPECT_TRUE(fs->
LoadSettings
(&store));
ext2_filesystem.cc
320
bool Ext2Filesystem::
LoadSettings
(brillo::KeyValueStore* store) const {
generate_delta_main.cc
530
if (part.fs_interface && part.fs_interface->
LoadSettings
(&store) &&
/system/weaved/buffet/
buffet_config.h
68
std::string
LoadSettings
(const std::string& name) override;
69
std::string
LoadSettings
() override;
buffet_config_unittest.cc
130
ASSERT_EQ("test", config_->
LoadSettings
("config"));
147
ASSERT_TRUE(config_->
LoadSettings
("config").empty());
155
ASSERT_TRUE(config_->
LoadSettings
("config").empty());
buffet_config.cc
169
std::string BuffetConfig::
LoadSettings
(const std::string& name) {
187
std::string BuffetConfig::
LoadSettings
() {
188
return
LoadSettings
("");
/external/libweave/src/
config_unittest.cc
91
EXPECT_CALL(config_store_,
LoadSettings
(kConfigName))
102
EXPECT_CALL(config_store_,
LoadSettings
(kConfigName))
115
EXPECT_CALL(config_store_,
LoadSettings
(kConfigName)).WillOnce(Return(""));
117
EXPECT_CALL(config_store_,
LoadSettings
()).Times(1);
123
EXPECT_CALL(config_store_,
LoadSettings
(kConfigName)).WillOnce(Return("{}"));
125
EXPECT_CALL(config_store_,
LoadSettings
()).Times(0);
153
EXPECT_CALL(config_store_,
LoadSettings
(kConfigName)).WillOnce(Return(state));
config.cc
149
std::string json_string = config_->config_store_->
LoadSettings
(kConfigName);
151
json_string = config_->config_store_->
LoadSettings
();
weave_unittest.cc
482
EXPECT_CALL(config_store_,
LoadSettings
())
516
EXPECT_CALL(config_store_,
LoadSettings
())
562
EXPECT_CALL(config_store_,
LoadSettings
())
access_black_list_manager_impl.cc
36
base::JSONReader::Read(store_->
LoadSettings
(kConfigFileName)))) {
access_black_list_manager_impl_unittest.cc
34
EXPECT_CALL(config_store_,
LoadSettings
("black_list"))
device_registration_info_unittest.cc
170
EXPECT_CALL(config_store_,
LoadSettings
()).WillOnce(Return(json_string));
Completed in 668 milliseconds