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()
57 mKernel.mConfigs = kernel_info_.mConfigs; in doFetch()
65 kernel_info_.mConfigs = std::move(configs); in setNextFetchKernelInfo()
70 kernel_info_.mConfigs = configs; in setNextFetchKernelInfo()
DLibVintfTest.cpp215 info.mConfigs = {{"CONFIG_64BIT", "y"}, in testKernelInfo()
/system/libvintf/
DKernelInfo.cpp33 return mConfigs; in configs()
47 auto it = this->mConfigs.find(key); in matchKernelConfigs()
48 if (it == this->mConfigs.end()) { in matchKernelConfigs()
260 return mVersion == other.mVersion && mConfigs == other.mConfigs; in operator ==()
273 if (!mergeField(&mConfigs, &other->mConfigs)) { in merge()
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()
DMatrixKernel.cpp25 if (mConfigs != other.mConfigs) in operator ==()
DRuntimeInfo-target.cpp59 return kernelconfigs::LoadKernelConfigs(&mRuntimeInfo->mKernel.mConfigs); in fetchKernelConfigs()
DCompatibilityMatrix.cpp89 it->mConfigs.insert(it->mConfigs.end(), configs.begin(), configs.end()); in addKernel()
Dparse_xml.cpp765 appendChildren(root, MatrixKernelConfigConverter{}, object.mConfigs, param); in mutateNode()
776 !parseChildren(root, MatrixKernelConfigConverter{}, &object->mConfigs, param)) { in buildObject()
1234 parseChildren(root, StringKernelConfigConverter{}, &object->mConfigs, param); in buildObject()
Dcheck_vintf.cpp130 mKernel.mConfigs = std::move(parser.configs()); in fetchAllInformation()
DAssembleVintf.cpp373 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.h80 std::map<std::string, std::string> mConfigs; variable