Home | History | Annotate | Download | only in base

Lines Matching defs:OptionsFile

11 #include "webrtc/base/optionsfile.h"
21 OptionsFile::OptionsFile(const std::string &path) : path_(path) {
24 bool OptionsFile::Load() {
62 bool OptionsFile::Save() {
103 bool OptionsFile::IsLegalName(const std::string &name) {
114 bool OptionsFile::IsLegalValue(const std::string &value) {
125 bool OptionsFile::GetStringValue(const std::string& option,
127 LOG(LS_VERBOSE) << "OptionsFile::GetStringValue "
140 bool OptionsFile::GetIntValue(const std::string& option,
142 LOG(LS_VERBOSE) << "OptionsFile::GetIntValue "
154 bool OptionsFile::SetStringValue(const std::string& option,
156 LOG(LS_VERBOSE) << "OptionsFile::SetStringValue "
165 bool OptionsFile::SetIntValue(const std::string& option,
167 LOG(LS_VERBOSE) << "OptionsFile::SetIntValue "
175 bool OptionsFile::RemoveValue(const std::string& option) {
176 LOG(LS_VERBOSE) << "OptionsFile::RemoveValue " << option;