Home
last modified time | relevance | path

Searched refs:runtime_options (Results 1 – 10 of 10) sorted by relevance

/art/runtime/
Druntime.cc726 RuntimeArgumentMap* runtime_options) { in ParseOptions() argument
729 bool parsed = ParsedOptions::Parse(raw_options, ignore_unrecognized, runtime_options); in ParseOptions()
745 bool Runtime::Create(RuntimeArgumentMap&& runtime_options) { in Create() argument
752 if (!instance_->Init(std::move(runtime_options))) { in Create()
763 RuntimeArgumentMap runtime_options; in Create() local
764 return ParseOptions(raw_options, ignore_unrecognized, &runtime_options) && in Create()
765 Create(std::move(runtime_options)); in Create()
1191 Opt runtime_options(std::move(runtime_options_in)); in Init() local
1196 if (runtime_options.Exists(Opt::UseStderrLogger)) { in Init()
1202 verifier_missing_kthrow_fatal_ = runtime_options.GetOrDefault(Opt::VerifierMissingKThrowFatal); in Init()
[all …]
Dparsed_options.h57 RuntimeArgumentMap* runtime_options);
68 RuntimeArgumentMap* runtime_options,
80 RuntimeArgumentMap* runtime_options);
Dparsed_options.cc54 RuntimeArgumentMap* runtime_options) { in Parse() argument
55 CHECK(runtime_options != nullptr); in Parse()
58 return parser.DoParse(options, ignore_unrecognized, runtime_options); in Parse()
453 RuntimeArgumentMap* runtime_options, in ProcessSpecialOptions() argument
466 if (runtime_options != nullptr) { in ProcessSpecialOptions()
467 runtime_options->Set(M::BootClassPathDexList, boot_class_path); in ProcessSpecialOptions()
472 if (runtime_options != nullptr) { in ProcessSpecialOptions()
473 runtime_options->Set(M::CompilerCallbacksPtr, compiler_callbacks); in ProcessSpecialOptions()
482 if (runtime_options != nullptr) { in ProcessSpecialOptions()
483 runtime_options->Set(M::ImageInstructionSet, image_isa); in ProcessSpecialOptions()
[all …]
Druntime.h121 RuntimeArgumentMap* runtime_options);
124 static bool Create(RuntimeArgumentMap&& runtime_options)
989 bool Init(RuntimeArgumentMap&& runtime_options)
DAndroid.bp233 "runtime_options.cc",
430 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
/art/runtime/jni/
Djava_vm_ext.h51 const RuntimeArgumentMap& runtime_options,
216 JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options, std::string* error_msg);
Djava_vm_ext.cc491 const RuntimeArgumentMap& runtime_options, in JavaVMExt() argument
497 force_copy_(runtime_options.Exists(RuntimeArgumentMap::JniOptsForceCopy)), in JavaVMExt()
498 tracing_enabled_(runtime_options.Exists(RuntimeArgumentMap::JniTrace) in JavaVMExt()
500 trace_(runtime_options.GetOrDefault(RuntimeArgumentMap::JniTrace)), in JavaVMExt()
514 runtime_options.GetOrDefault(RuntimeArgumentMap::GlobalRefAllocStackTraceLimit)), in JavaVMExt()
518 SetCheckJniEnabled(runtime_options.Exists(RuntimeArgumentMap::CheckJni)); in JavaVMExt()
529 const RuntimeArgumentMap& runtime_options, in Create() argument
531 std::unique_ptr<JavaVMExt> java_vm(new JavaVMExt(runtime, runtime_options, error_msg)); in Create()
/art/libprofile/
DAndroid.bp71 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
/art/dex2oat/
Ddex2oat.cc1692 RuntimeArgumentMap runtime_options; in Setup() local
1693 if (!PrepareRuntimeOptions(&runtime_options, callbacks_.get())) { in Setup()
1772 runtime_options.Set(RuntimeArgumentMap::BootClassPathDexList, &opened_dex_files_); in Setup()
1774 if (!CreateRuntime(std::move(runtime_options))) { in Setup()
2776 bool PrepareRuntimeOptions(RuntimeArgumentMap* runtime_options, in PrepareRuntimeOptions() argument
2810 if (!Runtime::ParseOptions(raw_options, false, runtime_options)) { in PrepareRuntimeOptions()
2818 bool CreateRuntime(RuntimeArgumentMap&& runtime_options) { in CreateRuntime() argument
2825 if (!Runtime::Create(std::move(runtime_options))) { in CreateRuntime()
/art/libartbase/
DAndroid.bp133 // Note: runtime_options.h depends on cmdline. But we don't really want to export this