Searched refs:KernelConfig (Results 1 – 6 of 6) sorted by relevance
/system/libvintf/include/vintf/ |
D | MatrixKernel.h | 37 using KernelConfig = std::pair<KernelConfigKey, KernelConfigTypedValue>; variable 44 MatrixKernel(KernelVersion &&minLts, std::vector<KernelConfig> &&configs) in MatrixKernel() 53 const std::vector<KernelConfig> &configs() const { return mConfigs; } in configs() 57 const std::vector<KernelConfig>& conditions() const { return mConditions; } in conditions() 70 std::vector<KernelConfig> mConfigs; 71 std::vector<KernelConfig> mConditions;
|
D | KernelInfo.h | 47 bool matchKernelConfigs(const std::vector<KernelConfig>& matrixConfigs,
|
/system/libvintf/ |
D | KernelInfo.cpp | 41 bool KernelInfo::matchKernelConfigs(const std::vector<KernelConfig>& matrixConfigs, in matchKernelConfigs() 43 for (const KernelConfig& matrixConfig : matrixConfigs) { in matchKernelConfigs()
|
D | AssembleVintf.cpp | 66 using Condition = std::unique_ptr<KernelConfig>; 67 using ConditionedConfig = std::pair<Condition, std::vector<KernelConfig> /* configs */>; 217 return std::make_unique<KernelConfig>(std::move(sub), Tristate::YES); in generateCondition() 221 std::vector<KernelConfig>* out) { in parseFileForKernelConfigs() 231 KernelConfig& config = out->back(); in parseFileForKernelConfigs() 267 std::vector<KernelConfig> kernelConfigs; in parseFilesForKernelConfigs()
|
D | parse_xml.cpp | 499 XmlPairConverter<KernelConfig> matrixKernelConfigConverter{ 629 struct MatrixKernelConditionsConverter : public XmlNodeConverter<std::vector<KernelConfig>> { 631 void mutateNode(const std::vector<KernelConfig>& conds, NodeType* root, in mutateNode() 635 bool buildObject(std::vector<KernelConfig>* object, NodeType* root, in buildObject()
|
/system/libvintf/test/ |
D | LibVintfTest.cpp | 601 … {KernelConfig{"CONFIG_FOO", Tristate::YES}, KernelConfig{"CONFIG_BAR", "stringvalue"}}})); in TEST_F() 603 … {KernelConfig{"CONFIG_BAZ", 20}, KernelConfig{"CONFIG_BAR", KernelConfigRangeValue{3, 5} }}})); in TEST_F() 804 using KernelConfigs = std::vector<KernelConfig>; in TEST_F() 806 KernelConfig{"CONFIG_64BIT", Tristate::YES}, in TEST_F() 807 KernelConfig{"CONFIG_ANDROID_BINDER_DEVICES", "binder,hwbinder"}, in TEST_F() 808 KernelConfig{"CONFIG_ARCH_MMAP_RND_BITS", 24}, in TEST_F() 809 KernelConfig{"CONFIG_BUILD_ARM64_APPENDED_DTB_IMAGE_NAMES", ""}, in TEST_F() 810 KernelConfig{"CONFIG_ILLEGAL_POINTER_VALUE", 0xdead000000000000}, in TEST_F() 811 KernelConfig{"CONFIG_NOTEXIST", Tristate::NO}, in TEST_F() 855 newConfigs[0] = KernelConfig{"CONFIG_64BIT", Tristate::NO}; in TEST_F() [all …]
|