Searched refs:KernelConfigTypedValue (Results 1 – 9 of 9) sorted by relevance
/system/libvintf/ |
D | KernelConfigTypedValue.cpp | 27 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()
|
D | Android.bp | 42 "KernelConfigTypedValue.cpp",
|
D | parse_string.cpp | 102 std::ostream &operator<<(std::ostream &os, const KernelConfigTypedValue &kctv) { 184 bool parseKernelConfigValue(const std::string &s, KernelConfigTypedValue *kctv) { in parseKernelConfigValue() 198 bool parseKernelConfigTypedValue(const std::string& s, KernelConfigTypedValue* kctv) { in parseKernelConfigTypedValue()
|
D | KernelInfo.cpp | 48 if (matrixConfig.second == KernelConfigTypedValue::gMissingConfig) { in matchKernelConfigs()
|
D | parse_xml.cpp | 476 struct KernelConfigTypedValueConverter : public XmlNodeConverter<KernelConfigTypedValue> { 478 … void mutateNode(const KernelConfigTypedValue &object, NodeType *root, DocType *d) const override { in mutateNode() 482 bool buildObject(KernelConfigTypedValue* object, NodeType* root, in buildObject() 1319 XmlConverter<KernelConfigTypedValue>& gKernelConfigTypedValueConverter =
|
/system/libvintf/include/vintf/ |
D | KernelConfigTypedValue.h | 32 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); [all …]
|
D | parse_string.h | 53 std::ostream &operator<<(std::ostream &os, const KernelConfigTypedValue &kcv); 95 bool parseKernelConfigValue(const std::string &s, KernelConfigTypedValue *kctv); 99 bool parseKernelConfigTypedValue(const std::string& s, KernelConfigTypedValue* kctv);
|
D | MatrixKernel.h | 37 using KernelConfig = std::pair<KernelConfigKey, KernelConfigTypedValue>;
|
/system/libvintf/test/ |
D | LibVintfTest.cpp | 41 extern XmlConverter<KernelConfigTypedValue>& gKernelConfigTypedValueConverter; 510 KernelConfigTypedValue converted; in TEST_F() 512 auto testOne = [] (const KernelConfigTypedValue &original, in TEST_F() 515 KernelConfigTypedValue converted; in TEST_F() 522 auto testParse = [] (const KernelConfigTypedValue &original, in TEST_F() 524 KernelConfigTypedValue converted; in TEST_F() 529 testOne(KernelConfigTypedValue("stringvalue"), in TEST_F() 531 testOne(KernelConfigTypedValue(""), in TEST_F() 534 testOne(KernelConfigTypedValue(Tristate::YES), in TEST_F() 536 testOne(KernelConfigTypedValue(Tristate::NO), in TEST_F() [all …]
|