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() 57 mKernel.mConfigs = kernel_info_.mConfigs; in doFetch() 65 kernel_info_.mConfigs = std::move(configs); in setNextFetchKernelInfo() 70 kernel_info_.mConfigs = configs; in setNextFetchKernelInfo()
|
D | LibVintfTest.cpp | 207 info.mConfigs = {{"CONFIG_64BIT", "y"}, in testKernelInfo()
|
/system/libvintf/ |
D | KernelInfo.cpp | 33 return mConfigs; in configs() 44 auto it = this->mConfigs.find(key); in matchKernelConfigs() 45 if (it == this->mConfigs.end()) { in matchKernelConfigs() 247 return mVersion == other.mVersion && mConfigs == other.mConfigs; in operator ==() 260 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 | 676 appendChildren(root, MatrixKernelConfigConverter{}, kernel.mConfigs, d); in mutateNode() 685 !parseChildren(root, MatrixKernelConfigConverter{}, &object->mConfigs, error)) { in buildObject() 1015 parseChildren(root, StringKernelConfigConverter{}, &o->mConfigs, error); in buildObject()
|
D | check_vintf.cpp | 129 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 | 80 std::map<std::string, std::string> mConfigs; variable
|