Searched refs:KernelConfig (Results 1 – 4 of 4) sorted by relevance
/system/libvintf/include/vintf/ |
D | MatrixKernel.h | 36 using KernelConfig = std::pair<KernelConfigKey, KernelConfigTypedValue>; variable 42 MatrixKernel(KernelVersion &&minLts, std::vector<KernelConfig> &&configs) in MatrixKernel() 51 const std::vector<KernelConfig> &configs() const { return mConfigs; } in configs() 57 std::vector<KernelConfig> mConfigs;
|
/system/libvintf/test/ |
D | main.cpp | 495 … {KernelConfig{"CONFIG_FOO", Tristate::YES}, KernelConfig{"CONFIG_BAR", "stringvalue"}}})); in TEST_F() 497 … {KernelConfig{"CONFIG_BAZ", 20}, KernelConfig{"CONFIG_BAR", KernelConfigRangeValue{3, 5} }}})); in TEST_F() 627 using KernelConfigs = std::vector<KernelConfig>; in TEST_F() 629 KernelConfig{"CONFIG_64BIT", Tristate::YES}, in TEST_F() 630 KernelConfig{"CONFIG_ANDROID_BINDER_DEVICES", "binder,hwbinder"}, in TEST_F() 631 KernelConfig{"CONFIG_ARCH_MMAP_RND_BITS", 24}, in TEST_F() 632 KernelConfig{"CONFIG_BUILD_ARM64_APPENDED_DTB_IMAGE_NAMES", ""}, in TEST_F() 633 KernelConfig{"CONFIG_ILLEGAL_POINTER_VALUE", 0xdead000000000000}, in TEST_F() 634 KernelConfig{"CONFIG_NOTEXIST", Tristate::NO}, in TEST_F() 672 newConfigs[0] = KernelConfig{"CONFIG_64BIT", Tristate::NO}; in TEST_F() [all …]
|
/system/libvintf/ |
D | RuntimeInfo.cpp | 98 for (const KernelConfig &matrixConfig : matrixKernel->configs()) { in checkCompatibility()
|
D | parse_xml.cpp | 428 struct KernelConfigConverter : public XmlNodeConverter<KernelConfig> { 430 void mutateNode(const KernelConfig &object, NodeType *root, DocType *d) const override { in mutateNode() 434 bool buildObject(KernelConfig *object, NodeType *root) const override { in buildObject()
|