Home
last modified time | relevance | path

Searched refs:KeyFileStore (Results 1 – 4 of 4) sorted by relevance

/system/connectivity/shill/
Dkey_file_store.cc43 static string ObjectID(const KeyFileStore* k) { return "(key_file_store)"; } in ObjectID()
58 const char KeyFileStore::kCorruptSuffix[] = ".corrupted";
60 KeyFileStore::KeyFileStore(const base::FilePath& path) in KeyFileStore() function in shill::KeyFileStore
67 KeyFileStore::~KeyFileStore() { in ~KeyFileStore()
71 void KeyFileStore::ReleaseKeyFile() { in ReleaseKeyFile()
78 bool KeyFileStore::IsNonEmpty() const { in IsNonEmpty()
83 bool KeyFileStore::Open() { in Open()
106 bool KeyFileStore::Close() { in Close()
112 bool KeyFileStore::Flush() { in Flush()
135 bool KeyFileStore::MarkAsCorrupted() { in MarkAsCorrupted()
[all …]
Dkey_file_store.h36 class KeyFileStore : public StoreInterface {
38 explicit KeyFileStore(const base::FilePath& path);
39 ~KeyFileStore() override;
106 DISALLOW_COPY_AND_ASSIGN(KeyFileStore);
Dstore_factory.cc45 return new KeyFileStore(path); in CreateStore()
Dkey_file_store_unittest.cc58 store_.reset(new KeyFileStore(test_file_)); in SetUp()
71 unique_ptr<KeyFileStore> store_;
669 class ReadOnlyKeyFileStore : public KeyFileStore {
672 : KeyFileStore(path) {} in ReadOnlyKeyFileStore()