Home
last modified time | relevance | path

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

/art/runtime/
Druntime.cc592 RuntimeArgumentMap* runtime_options) { in ParseOptions() argument
594 bool parsed = ParsedOptions::Parse(raw_options, ignore_unrecognized, runtime_options); in ParseOptions()
610 bool Runtime::Create(RuntimeArgumentMap&& runtime_options) { in Create() argument
617 if (!instance_->Init(std::move(runtime_options))) { in Create()
628 RuntimeArgumentMap runtime_options; in Create() local
629 return ParseOptions(raw_options, ignore_unrecognized, &runtime_options) && in Create()
630 Create(std::move(runtime_options)); in Create()
1041 RuntimeArgumentMap runtime_options(std::move(runtime_options_in)); in Init() local
1078 Thread::SetSensitiveThreadHook(runtime_options.GetOrDefault(Opt::HookIsSensitiveThread)); in Init()
1079 Monitor::Init(runtime_options.GetOrDefault(Opt::LockProfThreshold), in Init()
[all …]
Dparsed_options.h55 RuntimeArgumentMap* runtime_options);
66 RuntimeArgumentMap* runtime_options,
78 RuntimeArgumentMap* runtime_options);
Dparsed_options.cc48 RuntimeArgumentMap* runtime_options) { in Parse() argument
49 CHECK(runtime_options != nullptr); in Parse()
52 return parser.DoParse(options, ignore_unrecognized, runtime_options); in Parse()
343 RuntimeArgumentMap* runtime_options, in ProcessSpecialOptions() argument
356 if (runtime_options != nullptr) { in ProcessSpecialOptions()
357 runtime_options->Set(M::BootClassPathDexList, boot_class_path); in ProcessSpecialOptions()
362 if (runtime_options != nullptr) { in ProcessSpecialOptions()
363 runtime_options->Set(M::CompilerCallbacksPtr, compiler_callbacks); in ProcessSpecialOptions()
372 if (runtime_options != nullptr) { in ProcessSpecialOptions()
373 runtime_options->Set(M::ImageInstructionSet, image_isa); in ProcessSpecialOptions()
[all …]
Djava_vm_ext.h51 const RuntimeArgumentMap& runtime_options,
204 JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options, std::string* error_msg);
Djava_vm_ext.cc449 const RuntimeArgumentMap& runtime_options, in JavaVMExt() argument
455 force_copy_(runtime_options.Exists(RuntimeArgumentMap::JniOptsForceCopy)), in JavaVMExt()
456 tracing_enabled_(runtime_options.Exists(RuntimeArgumentMap::JniTrace) in JavaVMExt()
458 trace_(runtime_options.GetOrDefault(RuntimeArgumentMap::JniTrace)), in JavaVMExt()
472 SetCheckJniEnabled(runtime_options.Exists(RuntimeArgumentMap::CheckJni)); in JavaVMExt()
482 const RuntimeArgumentMap& runtime_options, in Create() argument
484 std::unique_ptr<JavaVMExt> java_vm(new JavaVMExt(runtime, runtime_options, error_msg)); in Create()
Druntime.h105 RuntimeArgumentMap* runtime_options);
108 static bool Create(RuntimeArgumentMap&& runtime_options)
687 bool Init(RuntimeArgumentMap&& runtime_options)
DAndroid.bp205 "runtime_options.cc",
/art/dex2oat/
Ddex2oat.cc1542 RuntimeArgumentMap runtime_options; in Setup() local
1543 if (!PrepareRuntimeOptions(&runtime_options)) { in Setup()
1564 if (!CreateRuntime(std::move(runtime_options))) { in Setup()
1712 runtime_options.Set(RuntimeArgumentMap::BootClassPathDexList, &opened_dex_files_); in Setup()
1713 if (!CreateRuntime(std::move(runtime_options))) { in Setup()
2563 bool PrepareRuntimeOptions(RuntimeArgumentMap* runtime_options) { in PrepareRuntimeOptions() argument
2626 if (!Runtime::ParseOptions(raw_options, false, runtime_options)) { in PrepareRuntimeOptions()
2634 bool CreateRuntime(RuntimeArgumentMap&& runtime_options) { in CreateRuntime() argument
2636 if (!Runtime::Create(std::move(runtime_options))) { in CreateRuntime()