Home
last modified time | relevance | path

Searched refs:api_level (Results 1 – 3 of 3) sorted by relevance

/system/bpf/libbpf_android/
DBpfUtils.cpp268 uint64_t api_level = GetUintProperty<uint64_t>("ro.product.first_api_level", 0); in getBpfSupportLevel() local
269 if (api_level == 0) { in getBpfSupportLevel()
271 api_level = GetUintProperty<uint64_t>("ro.build.version.sdk", 0); in getBpfSupportLevel()
275 if (api_level < MINIMUM_API_REQUIRED) return BpfLevel::NONE; in getBpfSupportLevel()
/system/core/adb/client/
Dfastdeploy.cpp59 int api_level = -1; in get_device_api_level() local
64 api_level = strtol((char*)sdkVersionOutputBuffer.data(), NULL, 10); in get_device_api_level()
67 return api_level; in get_device_api_level()
/system/netd/server/
DClatdController.cpp85 uint64_t api_level = base::GetUintProperty<uint64_t>("ro.product.first_api_level", 0); in init() local
86 if (api_level == 0) { in init()
88 api_level = base::GetUintProperty<uint64_t>("ro.build.version.sdk", 0); in init()
92 if (api_level > bpf::MINIMUM_API_REQUIRED) { in init()