Home
last modified time | relevance | path

Searched refs:option (Results 101 – 125 of 131) sorted by relevance

123456

/art/test/1987-structural-redefine-recursive-stack-scope/
Drun18 ./default-run "$@" --jvmti --android-runtime-option -Xopaque-jni-ids:true
/art/test/1336-short-finalizer-timeout/
Dinfo.txt1 Check that FinalizerTimeoutMs option works. Similar to 030-bad-finalizer.
Drun21 ./default-run --external-log-tags "$@" --runtime-option -XX:FinalizerTimeoutMs=500
/art/test/674-hotness-compiled/
Dinfo.txt1 Test for the --count-hotness-in-compiled-code compiler option.
/art/test/634-vdex-duplicate/
Drun17 exec ${RUN} -Xcompiler-option --compiler-filter=verify --vdex-filter speed --vdex "${@}"
/art/test/1956-pop-frame-jit-calling/
Drun26 ./default-run "$@" --android-runtime-option -Xjitthreshold:1000 --jvmti $ARGS
/art/test/1955-pop-frame-jit-called/
Drun26 ./default-run "$@" --android-runtime-option -Xjitthreshold:1000 --jvmti $ARGS
/art/test/055-enum-performance/
Dinfo.txt2 this test with the "--timing" option.
/art/test/133-static-invoke-super/
Dinfo.txt2 this test with the "--timing" option.
/art/test/etc/
Drun-test-jar179 option="$1"
180 COMPILE_FLAGS="${COMPILE_FLAGS} $option"
184 option="$1"
185 FLAGS="${FLAGS} -Xcompiler-option $option"
186 COMPILE_FLAGS="${COMPILE_FLAGS} $option"
193 option="$1"
194 ANDROID_FLAGS="${ANDROID_FLAGS} $option"
198 option="$1"
199 FLAGS="${FLAGS} $option"
200 if [ "x$option" = "x-Xmethod-trace" ]; then
[all …]
/art/runtime/
Dparsed_options.cc460 const std::string option(options[i].first); in ProcessSpecialOptions() local
462 if (option == "bootclasspath") { in ProcessSpecialOptions()
469 } else if (option == "compilercallbacks") { in ProcessSpecialOptions()
475 } else if (option == "imageinstructionset") { in ProcessSpecialOptions()
485 } else if (option == "sensitiveThread") { in ProcessSpecialOptions()
492 } else if (option == "vfprintf") { in ProcessSpecialOptions()
505 } else if (option == "exit") { in ProcessSpecialOptions()
516 } else if (option == "abort") { in ProcessSpecialOptions()
531 out_options->push_back(option); in ProcessSpecialOptions()
Druntime_options.def122 CompilerOptions) // -Xcompiler-option ...
124 ImageCompilerOptions) // -Ximage-compiler-option ...
177 // Even with this option set, we will still only actually load the plugin
/art/tools/bisection_search/
DREADME.md38 [--dalvikvm-option [OPT [OPT ...]]] [--arg [ARG [ARG ...]]]
55 --dalvikvm-option [OPT [OPT ...]] additional dalvikvm option
/art/dexlayout/
Ddexdiag.cc467 const std::string_view option(argv[i]); in DexDiagMain() local
468 if (option == "--help") { in DexDiagMain()
471 } else if (option == "--verbose") { in DexDiagMain()
473 } else if (StartsWith(option, "--contains=")) { in DexDiagMain()
474 std::string contains(option.substr(strlen("--contains="))); in DexDiagMain()
/art/dex2oat/
Ddex2oat_options.cc28 Result Parse(const std::string& option) { in Parse()
29 InstructionSet set = GetInstructionSetFromString(option.c_str()); in Parse()
31 return Result::Failure(std::string("Not a valid instruction set: '") + option + "'"); in Parse()
Ddex2oat.cc869 void ParseBase(const std::string& option) { in ParseBase() argument
871 image_base_ = strtoul(option.c_str(), &end, 16); in ParseBase()
872 if (end == option.c_str() || *end != '\0') { in ParseBase()
873 Usage("Failed to parse hexadecimal value for option %s", option.data()); in ParseBase()
881 void ParseInstructionSetVariant(const std::string& option, ParserOptions* parser_options) { in ParseInstructionSetVariant() argument
883 compiler_options_->instruction_set_, option, &parser_options->error_msg); in ParseInstructionSetVariant()
889 void ParseInstructionSetFeatures(const std::string& option, ParserOptions* parser_options) { in ParseInstructionSetFeatures() argument
900 option, &parser_options->error_msg); in ParseInstructionSetFeatures()
902 Usage("Error parsing '%s': %s", option.c_str(), parser_options->error_msg.c_str()); in ParseInstructionSetFeatures()
/art/compiler/driver/
Dcompiler_options.h390 bool ParseDumpInitFailures(const std::string& option, std::string* error_msg);
391 bool ParseRegisterAllocationStrategy(const std::string& option, std::string* error_msg);
/art/tools/jvmti-agents/jit-load/
DREADME.md17 * Pass the '=fatal' option to the agent to cause it to abort if any classes are
/art/oatdump/
Doatdump.cc3433 std::string_view option(raw_option, raw_option_length); in ParseCustom() local
3434 if (StartsWith(option, "--oat-file=")) { in ParseCustom()
3436 } else if (StartsWith(option, "--dex-file=")) { in ParseCustom()
3438 } else if (StartsWith(option, "--image=")) { in ParseCustom()
3440 } else if (option == "--no-dump:vmap") { in ParseCustom()
3442 } else if (option =="--dump:code_info_stack_maps") { in ParseCustom()
3444 } else if (option == "--no-disassemble") { in ParseCustom()
3446 } else if (option =="--header-only") { in ParseCustom()
3448 } else if (StartsWith(option, "--symbolize=")) { in ParseCustom()
3451 } else if (StartsWith(option, "--only-keep-debug")) { in ParseCustom()
[all …]
/art/tools/ahat/
DREADME.txt57 Add option for viewing subclass instances of a class.
65 Add --retained command line option to ahat.
/art/tools/jfuzz/
Djfuzz.cc1317 int32_t option = getopt(argc, argv, "s:d:l:i:n:vh"); in main() local
1318 if (option < 0) { in main()
1321 switch (option) { in main()
/art/libartbase/base/
Dcommon_art_test.cc469 std::string CommonArtTestImpl::GetClassPathOption(const char* option, in GetClassPathOption() argument
471 return option + android::base::Join(class_path, ':'); in GetClassPathOption()
Dcommon_art_test.h194 static std::string GetClassPathOption(const char* option,
/art/tools/
Dart244 -Xcompiler-option)
/art/test/
DREADME.chroot.md93 * Note: The `-j` option is not honored yet (b/129930445).

123456