Home
last modified time | relevance | path

Searched refs:bitness (Results 1 – 5 of 5) sorted by relevance

/art/oatdump/
Doatdump_test.h74 std::string GetExecutableFilePath(const char* name, bool is_debug, bool is_static, bool bitness) { in GetExecutableFilePath() argument
82 if (bitness) { in GetExecutableFilePath()
88 std::string GetExecutableFilePath(Flavor flavor, const char* name, bool bitness) { in GetExecutableFilePath() argument
89 return GetExecutableFilePath(name, kIsDebugBuild, flavor == kStatic, bitness); in GetExecutableFilePath()
/art/libnativeloader/
Dpublic_libraries.h61 Bitness bitness; member
Dpublic_libraries.cpp451 struct ConfigEntry entry = {.soname = "", .nopreload = false, .bitness = ALL}; in ParseConfig()
457 if (entry.bitness != ALL) { in ParseConfig()
460 entry.bitness = tokens[i] == "32" ? ONLY_32 : ONLY_64; in ParseConfig()
471 if (entry.bitness == ONLY_32) continue; in ParseConfig()
473 if (entry.bitness == ONLY_64) continue; in ParseConfig()
/art/tools/
Ddex2oat_wrapper70 echo "Either --32 or --64 is required as argument to specify bitness"
109 # If the dex2oat binary with the bitness as a suffix doesn't exist,
/art/build/apex/
Dart_apex_test.py997 if test_args.bitness == BITNESS_AUTO:
1003 test_args.bitness = BITNESS_MULTILIB
1006 test_args.bitness = BITNESS_32
1009 test_args.bitness = BITNESS_64
1015 if test_args.bitness == BITNESS_32:
1017 elif test_args.bitness == BITNESS_64:
1020 assert test_args.bitness == BITNESS_MULTILIB
1072 test_args.bitness = BITNESS_AUTO