Lines Matching refs:kctv
105 std::ostream &operator<<(std::ostream &os, const KernelConfigTypedValue &kctv) {
106 switch (kctv.mType) {
108 return os << kctv.mStringValue;
110 return os << to_string(kctv.mIntegerValue);
112 return os << to_string(kctv.mRangeValue.first) << "-"
113 << to_string(kctv.mRangeValue.second);
115 return os << to_string(kctv.mTristateValue);
187 bool parseKernelConfigValue(const std::string &s, KernelConfigTypedValue *kctv) { in parseKernelConfigValue() argument
188 switch (kctv->mType) { in parseKernelConfigValue()
190 kctv->mStringValue = s; in parseKernelConfigValue()
193 return parseKernelConfigInt(s, &kctv->mIntegerValue); in parseKernelConfigValue()
195 return parseRange(s, &kctv->mRangeValue); in parseKernelConfigValue()
197 return parse(s, &kctv->mTristateValue); in parseKernelConfigValue()
201 bool parseKernelConfigTypedValue(const std::string& s, KernelConfigTypedValue* kctv) { in parseKernelConfigTypedValue() argument
203 kctv->mType = KernelConfigType::STRING; in parseKernelConfigTypedValue()
204 kctv->mStringValue = s.substr(1, s.size()-2); in parseKernelConfigTypedValue()
207 if (parseKernelConfigInt(s, &kctv->mIntegerValue)) { in parseKernelConfigTypedValue()
208 kctv->mType = KernelConfigType::INTEGER; in parseKernelConfigTypedValue()
211 if (parse(s, &kctv->mTristateValue)) { in parseKernelConfigTypedValue()
212 kctv->mType = KernelConfigType::TRISTATE; in parseKernelConfigTypedValue()