Home
last modified time | relevance | path

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

/aosp12/art/runtime/
H A Druntime.cc773 if (!instance_->Init(std::move(runtime_options))) { in Create()
784 RuntimeArgumentMap runtime_options; in Create() local
786 Create(std::move(runtime_options)); in Create()
1336 Opt runtime_options(std::move(runtime_options_in)); in Init() local
1350 if (runtime_options.Exists(Opt::UseStderrLogger)) { in Init()
1455 is_zygote_ = runtime_options.Exists(Opt::Zygote); in Init()
1462 exit_ = runtime_options.GetOrDefault(Opt::HookExit); in Init()
1463 abort_ = runtime_options.GetOrDefault(Opt::HookAbort); in Init()
1498 verify_ = runtime_options.GetOrDefault(Opt::Verify); in Init()
1525 if (runtime_options.GetOrDefault(Opt::Interpret)) { in Init()
[all …]
H A Dparsed_options.cc56 CHECK(runtime_options != nullptr); in Parse()
495 if (runtime_options != nullptr) { in ProcessSpecialOptions()
501 if (runtime_options != nullptr) { in ProcessSpecialOptions()
511 if (runtime_options != nullptr) { in ProcessSpecialOptions()
518 if (runtime_options != nullptr) { in ProcessSpecialOptions()
530 if (runtime_options != nullptr) { in ProcessSpecialOptions()
541 if (runtime_options != nullptr) { in ProcessSpecialOptions()
542 runtime_options->Set(M::HookExit, hook_exit); in ProcessSpecialOptions()
552 if (runtime_options != nullptr) { in ProcessSpecialOptions()
553 runtime_options->Set(M::HookAbort, hook_abort); in ProcessSpecialOptions()
[all …]
H A Dparsed_options.h56 RuntimeArgumentMap* runtime_options);
67 RuntimeArgumentMap* runtime_options,
79 RuntimeArgumentMap* runtime_options);
H A Druntime.h124 RuntimeArgumentMap* runtime_options);
127 static bool Create(RuntimeArgumentMap&& runtime_options)
1056 bool Init(RuntimeArgumentMap&& runtime_options)
H A DAndroid.bp238 "runtime_options.cc",
471 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
/aosp12/art/runtime/jni/
H A 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()
H A Djava_vm_ext.h52 const RuntimeArgumentMap& runtime_options,
217 JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options, std::string* error_msg);
/aosp12/art/dex2oat/
H A Ddex2oat.cc1430 RuntimeArgumentMap runtime_options; in Setup() local
1431 if (!PrepareRuntimeOptions(&runtime_options, callbacks_.get())) { in Setup()
1514 runtime_options.Set(RuntimeArgumentMap::BootClassPathDexList, &opened_dex_files_); in Setup()
1516 if (!CreateRuntime(std::move(runtime_options))) { in Setup()
2663 bool PrepareRuntimeOptions(RuntimeArgumentMap* runtime_options, in PrepareRuntimeOptions() argument
2697 if (!Runtime::ParseOptions(raw_options, false, runtime_options)) { in PrepareRuntimeOptions()
2705 bool CreateRuntime(RuntimeArgumentMap&& runtime_options) { in CreateRuntime() argument
2712 if (!Runtime::Create(std::move(runtime_options))) { in CreateRuntime()