Home
last modified time | relevance | path

Searched refs:bitness (Results 1 – 4 of 4) 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.cpp413 struct ConfigEntry entry = {.soname = "", .nopreload = false, .bitness = ALL}; in ParseConfig()
419 if (entry.bitness != ALL) { in ParseConfig()
422 entry.bitness = tokens[i] == "32" ? ONLY_32 : ONLY_64; in ParseConfig()
433 if (entry.bitness == ONLY_32) continue; in ParseConfig()
435 if (entry.bitness == ONLY_64) continue; in ParseConfig()
Dpublic_libraries.h58 Bitness bitness; member
/art/build/apex/
Dart_apex_test.py1166 if test_args.bitness == BITNESS_AUTO:
1172 test_args.bitness = BITNESS_MULTILIB
1175 test_args.bitness = BITNESS_32
1178 test_args.bitness = BITNESS_64
1184 if test_args.bitness == BITNESS_32:
1186 elif test_args.bitness == BITNESS_64:
1189 assert test_args.bitness == BITNESS_MULTILIB
1241 test_args.bitness = BITNESS_AUTO