HomeSort by relevance Sort by last modified time
    Searched refs:api_level (Results 1 - 25 of 28) sorted by null

1 2

  /bionic/libc/include/android/
versioning.h 20 #define __INTRODUCED_IN(api_level) __attribute__((annotate("introduced_in=" #api_level)))
22 #define __DEPRECATED_IN(api_level) __attribute__((annotate("deprecated_in=" #api_level)))
23 #define __REMOVED_IN(api_level) __attribute__((annotate("obsoleted_in=" #api_level)))
24 #define __INTRODUCED_IN_32(api_level) __attribute__((annotate("introduced_in_32=" #api_level)))
25 #define __INTRODUCED_IN_64(api_level) __attribute__((annotate("introduced_in_64=" #api_level)))
    [all...]
  /test/vts-testcase/kernel/lib/
version.py 29 api_level = dut.getLaunchApiLevel(strict=False)
30 if api_level > api.PLATFORM_API_LEVEL_O_MR1 or api_level == 0:
  /bionic/tools/versioner/src/
CompilationType.h 29 int api_level; member in struct:CompilationType
34 return std::tie(arch, cpp, api_level, file_offset_bits);
54 int32_t api_level : 6; member in struct:std::hash::__anon1508
60 packed.api_level = type.api_level;
CompilationType.cpp 24 ss << to_string(type.arch) << "-" << type.api_level << " [" << (type.cpp ? "c++" : "c")
versioner.cpp 168 for (int api_level : selected_levels) {
169 if (api_level < min_api) {
176 .arch = arch, .cpp = cpp, .api_level = api_level, .file_offset_bits = file_offset_bits
385 if (global_availability.introduced != 0 && global_availability.introduced > type.api_level) {
389 if (arch_availability.introduced != 0 && arch_availability.introduced > type.api_level) {
393 if (global_availability.obsoleted != 0 && global_availability.obsoleted <= type.api_level) {
397 if (arch_availability.obsoleted != 0 && arch_availability.obsoleted <= type.api_level) {
468 fprintf(stderr, " -a API_LEVEL\tbuild with specified API level (can be repeated)\n");
512 int api_level = strtol(optarg, &end, 10) local
    [all...]
Preprocessor.cpp 59 if (global_min_api_visible == 0 || global_min_api_visible > type.api_level) {
60 global_min_api_visible = type.api_level;
63 if (arch_visibility[type.arch] == 0 || arch_visibility[type.arch] > type.api_level) {
64 arch_visibility[type.arch] = type.api_level;
Driver.cpp 128 cmd.push_back("-D__ANDROID_API__="s + std::to_string(type.api_level));
  /test/vts/utils/python/vndk/
vndk_utils.py 36 api_level = dut.getLaunchApiLevel(strict=False)
37 if not api_level:
41 if api_level <= api.PLATFORM_API_LEVEL_O_MR1:
  /bionic/linker/
linker_globals.cpp 53 void DL_WARN_documented_change(int api_level, const char* doc_link, const char* fmt, ...) {
65 api_level, doc_link, get_application_target_sdk_version());
linker_globals.h 52 void DL_WARN_documented_change(int api_level, const char* doc_link, const char* fmt, ...);
  /test/vts-testcase/hal/treble/vintf/
utils.cpp 81 uint64_t api_level = local
83 if (api_level != 0) {
84 return api_level;
  /libcore/tools/docs/crypto/
run_update_crypto_support.sh 17 vogar --mode=activity --multidex=false libcore/tools/docs/crypto/src/java/libcore/java/security/ListProviders.java | libcore/tools/docs/crypto/update_crypto_support.py --api_level=$1 --rewrite_file libcore/tools/docs/crypto/data/crypto_support.json
update_crypto_support.py 169 def update_data(prev_data, current_data, name_dict, api_level, date):
182 api_level: An integer representing the current API level.
213 + ',%d+' % api_level)
221 if not new_level.endswith(str(api_level - 1)):
222 new_level += '-%d' % (api_level - 1)
228 new_level = '%d+' % api_level
238 new_data['api_level'] = str(api_level)
246 parser.add_argument('--api_level',
265 args.api_level,
    [all...]
  /test/vts-testcase/kernel/api/proc/
ProcModulesTest.py 26 api_level = dut.getLaunchApiLevel(strict=False)
  /test/vts-testcase/kernel/config/
VtsKernelConfigTest.py 65 api_level = self.dut.getLaunchApiLevel(strict=False)
67 if (api_level == 0):
70 elif api_level == api.PLATFORM_API_LEVEL_P:
72 elif api_level == api.PLATFORM_API_LEVEL_O_MR1:
74 elif api_level <= api.PLATFORM_API_LEVEL_O:
  /external/tensorflow/tensorflow/tools/ci_build/builds/
builds_common.sh 230 api_level = ${ANDROID_API_LEVEL},
238 api_level=14)
  /system/netd/libbpf/
BpfUtils.cpp 214 uint64_t api_level = GetUintProperty<uint64_t>("ro.product.first_api_level", 0); local
215 if (api_level == 0) {
217 api_level = GetUintProperty<uint64_t>("ro.build.version.sdk", 0);
229 return api_level >= MINIMUM_API_REQUIRED;
  /build/make/tools/releasetools/
sign_target_files_apks 709 api_level = None
717 api_level = int(value.strip())
721 if api_level is None:
726 return (api_level, codename)
731 api_level = None
739 api_level = int(value.strip())
743 if api_level is None:
752 result[codename] = api_level
sign_target_files_apks.py 709 api_level = None
717 api_level = int(value.strip())
721 if api_level is None:
726 return (api_level, codename)
731 api_level = None
739 api_level = int(value.strip())
743 if api_level is None:
752 result[codename] = api_level
  /prebuilts/ndk/
update.py 50 def api_str(api_level):
51 return 'android-{}'.format(api_level)
  /hardware/interfaces/biometrics/fingerprint/2.1/vts/functional/
VtsHalBiometricsFingerprintV2_1TargetTest.cpp 210 uint64_t api_level = GetUintProperty<uint64_t>("ro.product.first_api_level", 0); variable
211 if (api_level == 0) {
212 api_level = GetUintProperty<uint64_t>("ro.build.version.sdk", 0);
214 ASSERT_TRUE(api_level != 0);
217 if (api_level <= 27) {
  /build/make/tools/droiddoc/templates-pdk/assets/
android-developer-reference.js 6 var API_LEVEL_COOKIE = "api_level";
117 function new_node(me, mom, text, link, children_data, api_level)
129 if (api_level != null) {
131 $(node.label_div).addClass("api-level-"+api_level);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux_libcdep.cc 462 u32 api_level = AndroidGetApiLevel(); local
466 if (api_level <= ANDROID_LOLLIPOP_MR1) { // L or earlier
  /external/doclava/res/assets/templates/assets/
doclava-developer-reference.js 8 var API_LEVEL_COOKIE = "api_level";
98 function new_node(me, mom, text, link, children_data, api_level)
110 if (api_level != null) {
112 $(node.label_div).addClass("api-level-"+api_level);
  /development/vndk/tools/definition-tool/tests/
ndk_toolchain.py 191 targets = create_targets(args.ndk_dir, args.api_level, args.host)

Completed in 422 milliseconds

1 2