Home
last modified time | relevance | path

Searched refs:mConfigs (Results 1 – 13 of 13) sorted by relevance

/system/libvintf/test/
DRuntimeInfo-fake.cpp25 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()
DLibVintfTest.cpp199 info.mConfigs = {{"CONFIG_64BIT", "y"}, in testKernelInfo()
/system/libvintf/
DKernelInfo.cpp34 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()
DMatrixKernel.cpp25 if (mConfigs != other.mConfigs) in operator ==()
DKernelConfigParser.cpp39 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()
DRuntimeInfo-target.cpp86 mRuntimeInfo->mKernel.mConfigs = std::move(mConfigParser.configs()); in fetchKernelConfigs()
DCompatibilityMatrix.cpp89 it->mConfigs.insert(it->mConfigs.end(), configs.begin(), configs.end()); in addKernel()
Dparse_xml.cpp664 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()
Dcheck_vintf.cpp167 mKernel.mConfigs = std::move(parser.configs()); in fetchAllInformation()
DAssembleVintf.cpp342 kernel_info->mConfigs = parser.configs(); in setDeviceManifestKernel()
/system/libvintf/include/vintf/
DMatrixKernel.h45 : 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
DKernelConfigParser.h44 std::map<std::string, std::string> mConfigs; variable
DKernelInfo.h75 std::map<std::string, std::string> mConfigs; variable