Lines Matching refs:RuntimeInfo

44     RuntimeInfoFetcher(RuntimeInfo *ki) : mRuntimeInfo(ki) { }  in RuntimeInfoFetcher()
45 status_t fetchAllInformation(RuntimeInfo::FetchFlags flags);
48 status_t fetchVersion(RuntimeInfo::FetchFlags flags);
49 status_t fetchKernelConfigs(RuntimeInfo::FetchFlags flags);
50 status_t fetchCpuInfo(RuntimeInfo::FetchFlags flags);
51 status_t fetchKernelSepolicyVers(RuntimeInfo::FetchFlags flags);
52 status_t fetchAvb(RuntimeInfo::FetchFlags flags);
54 RuntimeInfo* mRuntimeInfo;
58 status_t RuntimeInfoFetcher::fetchKernelConfigs(RuntimeInfo::FetchFlags) { in fetchKernelConfigs()
62 status_t RuntimeInfoFetcher::fetchCpuInfo(RuntimeInfo::FetchFlags) { in fetchCpuInfo()
75 status_t RuntimeInfoFetcher::fetchKernelSepolicyVers(RuntimeInfo::FetchFlags) { in fetchKernelSepolicyVers()
89 status_t RuntimeInfoFetcher::fetchVersion(RuntimeInfo::FetchFlags flags) { in fetchVersion()
100 mRuntimeInfo->mIsMainline = RuntimeInfo::kernelReleaseIsMainline(mRuntimeInfo->mOsRelease); in fetchVersion()
102 status_t err = RuntimeInfo::parseGkiKernelRelease(flags, mRuntimeInfo->mOsRelease, in fetchVersion()
132 status_t RuntimeInfoFetcher::fetchAvb(RuntimeInfo::FetchFlags) { in fetchAvb()
145 RuntimeInfo::FetchFlags flags;
146 std::function<status_t(RuntimeInfoFetcher*, RuntimeInfo::FetchFlags)> fetch;
150 status_t RuntimeInfoFetcher::fetchAllInformation(RuntimeInfo::FetchFlags flags) { in fetchAllInformation()
151 using F = RuntimeInfo::FetchFlag; in fetchAllInformation()
172 status_t RuntimeInfo::fetchAllInformation(RuntimeInfo::FetchFlags flags) { in fetchAllInformation()