Searched refs:mConfigs (Results 1 – 13 of 13) sorted by relevance
/system/libvintf/test/ |
D | RuntimeInfo-fake.cpp | 25 kernel_info_.mConfigs = {{"CONFIG_64BIT", "y"}, in MockRuntimeInfo() 53 mKernel.mConfigs = kernel_info_.mConfigs; in doFetch() 61 kernel_info_.mConfigs = std::move(configs); in setNextFetchKernelInfo() 66 kernel_info_.mConfigs = configs; in setNextFetchKernelInfo()
|
D | LibVintfTest.cpp | 199 info.mConfigs = {{"CONFIG_64BIT", "y"}, in testKernelInfo()
|
/system/libvintf/ |
D | KernelInfo.cpp | 34 return mConfigs; in configs() 45 auto it = this->mConfigs.find(key); in matchKernelConfigs() 46 if (it == this->mConfigs.end()) { in matchKernelConfigs() 248 return mVersion == other.mVersion && mConfigs == other.mConfigs; in operator ==() 261 if (!mergeField(&mConfigs, &other->mConfigs)) { in merge()
|
D | MatrixKernel.cpp | 25 if (mConfigs != other.mConfigs) in operator ==()
|
D | KernelConfigParser.cpp | 39 return mConfigs; in configs() 43 return mConfigs; in configs() 68 if (mConfigs.emplace(match[1], trimTrailingSpaces(match[2])).second) { in processRemaining() 80 if (mConfigs.emplace(std::move(key), std::move(value)).second) { in processRemaining() 89 if (mConfigs.emplace(match[1], "n").second) { in processRemaining()
|
D | RuntimeInfo-target.cpp | 86 mRuntimeInfo->mKernel.mConfigs = std::move(mConfigParser.configs()); in fetchKernelConfigs()
|
D | CompatibilityMatrix.cpp | 89 it->mConfigs.insert(it->mConfigs.end(), configs.begin(), configs.end()); in addKernel()
|
D | parse_xml.cpp | 664 appendChildren(root, matrixKernelConfigConverter, kernel.mConfigs, d); in mutateNode() 673 !parseChildren(root, matrixKernelConfigConverter, &object->mConfigs, error)) { in buildObject() 966 parseChildren(root, kernelConfigConverter, &o->mConfigs, error); in buildObject()
|
D | check_vintf.cpp | 167 mKernel.mConfigs = std::move(parser.configs()); in fetchAllInformation()
|
D | AssembleVintf.cpp | 342 kernel_info->mConfigs = parser.configs(); in setDeviceManifestKernel()
|
/system/libvintf/include/vintf/ |
D | MatrixKernel.h | 45 : mMinLts(std::move(minLts)), mConfigs(std::move(configs)) {} in MatrixKernel() 53 const std::vector<KernelConfig> &configs() const { return mConfigs; } in configs() 70 std::vector<KernelConfig> mConfigs; member
|
D | KernelConfigParser.h | 44 std::map<std::string, std::string> mConfigs; variable
|
D | KernelInfo.h | 75 std::map<std::string, std::string> mConfigs; variable
|