Lines Matching refs:KeyFileStore

43 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()
146 set<string> KeyFileStore::GetGroups() const { in GetGroups()
161 set<string> KeyFileStore::GetGroupsWithKey(const string& key) const { in GetGroupsWithKey()
172 set<string> KeyFileStore::GetGroupsWithProperties( in GetGroupsWithProperties()
184 bool KeyFileStore::ContainsGroup(const string& group) const { in ContainsGroup()
189 bool KeyFileStore::DeleteKey(const string& group, const string& key) { in DeleteKey()
201 bool KeyFileStore::DeleteGroup(const string& group) { in DeleteGroup()
213 bool KeyFileStore::SetHeader(const string& header) { in SetHeader()
224 bool KeyFileStore::GetString(const string& group, in GetString()
243 bool KeyFileStore::SetString(const string& group, in SetString()
251 bool KeyFileStore::GetBool(const string& group, in GetBool()
269 bool KeyFileStore::SetBool(const string& group, const string& key, bool value) { in SetBool()
278 bool KeyFileStore::GetInt( in GetInt()
295 bool KeyFileStore::SetInt(const string& group, const string& key, int value) { in SetInt()
301 bool KeyFileStore::GetUint64( in GetUint64()
325 bool KeyFileStore::SetUint64( in SetUint64()
333 bool KeyFileStore::GetStringList(const string& group, in GetStringList()
356 bool KeyFileStore::SetStringList(const string& group, in SetStringList()
372 bool KeyFileStore::GetCryptedString(const string& group, in GetCryptedString()
384 bool KeyFileStore::SetCryptedString(const string& group, in SetCryptedString()
390 bool KeyFileStore::DoesGroupMatchProperties( in DoesGroupMatchProperties()