Home
last modified time | relevance | path

Searched refs:KernelConfigTypedValue (Results 1 – 9 of 9) sorted by relevance

/system/libvintf/
DKernelConfigTypedValue.cpp27 const KernelConfigTypedValue KernelConfigTypedValue::gMissingConfig{Tristate::NO};
29 KernelConfigTypedValue::KernelConfigTypedValue() in KernelConfigTypedValue() function in android::vintf::KernelConfigTypedValue
30 : KernelConfigTypedValue("") { in KernelConfigTypedValue()
33 KernelConfigTypedValue::KernelConfigTypedValue(std::string &&s){ in KernelConfigTypedValue() function in android::vintf::KernelConfigTypedValue
38 KernelConfigTypedValue::KernelConfigTypedValue(KernelConfigIntValue v){ in KernelConfigTypedValue() function in android::vintf::KernelConfigTypedValue
43 KernelConfigTypedValue::KernelConfigTypedValue(KernelConfigRangeValue &&v){ in KernelConfigTypedValue() function in android::vintf::KernelConfigTypedValue
48 KernelConfigTypedValue::KernelConfigTypedValue(Tristate t){ in KernelConfigTypedValue() function in android::vintf::KernelConfigTypedValue
53 bool KernelConfigTypedValue::operator==(const KernelConfigTypedValue &other) const { in operator ==()
70 bool KernelConfigTypedValue::matchValue(const std::string &s) const { in matchValue()
DAndroid.bp43 "KernelConfigTypedValue.cpp",
113 "KernelConfigTypedValue.cpp",
DRuntimeInfo.cpp103 if (matrixConfig.second == KernelConfigTypedValue::gMissingConfig) { in checkCompatibility()
Dparse_string.cpp101 std::ostream &operator<<(std::ostream &os, const KernelConfigTypedValue &kctv) { in operator <<()
156 bool parseKernelConfigValue(const std::string &s, KernelConfigTypedValue *kctv) { in parseKernelConfigValue()
Dparse_xml.cpp406 struct KernelConfigTypedValueConverter : public XmlNodeConverter<KernelConfigTypedValue> {
408 … void mutateNode(const KernelConfigTypedValue &object, NodeType *root, DocType *d) const override { in mutateNode()
412 bool buildObject(KernelConfigTypedValue *object, NodeType *root) const override { in buildObject()
740 const XmlConverter<KernelConfigTypedValue> &gKernelConfigTypedValueConverter
/system/libvintf/include/vintf/
DKernelConfigTypedValue.h32 struct KernelConfigTypedValue { struct
34 const static KernelConfigTypedValue gMissingConfig; argument
37 KernelConfigTypedValue();
39 KernelConfigTypedValue(std::string &&s);
40 KernelConfigTypedValue(KernelConfigIntValue v);
41 KernelConfigTypedValue(KernelConfigRangeValue &&v);
42 KernelConfigTypedValue(Tristate t);
44 bool operator==(const KernelConfigTypedValue &other) const;
50 friend std::ostream &operator<<(std::ostream &os, const KernelConfigTypedValue &kctv);
51 friend bool parseKernelConfigValue(const std::string &s, KernelConfigTypedValue *kctv);
Dparse_string.h45 std::ostream &operator<<(std::ostream &os, const KernelConfigTypedValue &kcv);
78 bool parseKernelConfigValue(const std::string &s, KernelConfigTypedValue *kctv);
DMatrixKernel.h36 using KernelConfig = std::pair<KernelConfigKey, KernelConfigTypedValue>;
/system/libvintf/test/
Dmain.cpp36 extern const XmlConverter<KernelConfigTypedValue> &gKernelConfigTypedValueConverter;
404 KernelConfigTypedValue converted; in TEST_F()
406 auto testOne = [] (const KernelConfigTypedValue &original, in TEST_F()
409 KernelConfigTypedValue converted; in TEST_F()
416 auto testParse = [] (const KernelConfigTypedValue &original, in TEST_F()
418 KernelConfigTypedValue converted; in TEST_F()
423 testOne(KernelConfigTypedValue("stringvalue"), in TEST_F()
425 testOne(KernelConfigTypedValue(""), in TEST_F()
428 testOne(KernelConfigTypedValue(Tristate::YES), in TEST_F()
430 testOne(KernelConfigTypedValue(Tristate::NO), in TEST_F()
[all …]