Home | History | Annotate | Download | only in jni

Lines Matching refs:info

35         std::shared_ptr<const RuntimeInfo> info = VintfObject::GetRuntimeInfo(         \
37 if (info == nullptr) return nullptr; \
41 MAP_STRING_METHOD(getCpuInfo, info->cpuInfo(), RuntimeInfo::FetchFlag::CPU_INFO);
42 MAP_STRING_METHOD(getOsName, info->osName(), RuntimeInfo::FetchFlag::CPU_VERSION);
43 MAP_STRING_METHOD(getNodeName, info->nodeName(), RuntimeInfo::FetchFlag::CPU_VERSION);
44 MAP_STRING_METHOD(getOsRelease, info->osRelease(), RuntimeInfo::FetchFlag::CPU_VERSION);
45 MAP_STRING_METHOD(getOsVersion, info->osVersion(), RuntimeInfo::FetchFlag::CPU_VERSION);
46 MAP_STRING_METHOD(getHardwareId, info->hardwareId(), RuntimeInfo::FetchFlag::CPU_VERSION);
47 MAP_STRING_METHOD(getKernelVersion, vintf::to_string(info->kernelVersion()),
49 MAP_STRING_METHOD(getBootAvbVersion, vintf::to_string(info->bootAvbVersion()),
51 MAP_STRING_METHOD(getBootVbmetaAvbVersion, vintf::to_string(info->bootVbmetaAvbVersion()),
57 std::shared_ptr<const RuntimeInfo> info = VintfObject::GetRuntimeInfo(
59 if (info == nullptr) return 0;
60 return static_cast<jlong>(info->kernelSepolicyVersion());