Home
last modified time | relevance | path

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

/art/runtime/
Druntime.cc915 RuntimeArgumentMap* runtime_options) { in ParseOptions() argument
918 bool parsed = ParsedOptions::Parse(raw_options, ignore_unrecognized, runtime_options); in ParseOptions()
946 bool Runtime::Create(RuntimeArgumentMap&& runtime_options) { in Create() argument
953 if (!instance_->Init(std::move(runtime_options))) { in Create()
964 RuntimeArgumentMap runtime_options; in Create() local
965 return ParseOptions(raw_options, ignore_unrecognized, &runtime_options) && in Create()
966 Create(std::move(runtime_options)); in Create()
1515 inline static uint64_t GetThreadSuspendTimeout(const RuntimeArgumentMap* runtime_options) { in GetThreadSuspendTimeout() argument
1516 auto suspend_timeout_opt = runtime_options->GetOptional(RuntimeArgumentMap::ThreadSuspendTimeout); in GetThreadSuspendTimeout()
1533 Opt runtime_options(std::move(runtime_options_in)); in Init() local
[all …]
Dparsed_options.h57 RuntimeArgumentMap* runtime_options);
68 RuntimeArgumentMap* runtime_options,
80 RuntimeArgumentMap* runtime_options);
Dparsed_options.cc55 RuntimeArgumentMap* runtime_options) { in Parse() argument
56 CHECK(runtime_options != nullptr); in Parse()
59 return parser.DoParse(options, ignore_unrecognized, runtime_options); in Parse()
534 RuntimeArgumentMap* runtime_options, in ProcessSpecialOptions() argument
547 if (runtime_options != nullptr) { in ProcessSpecialOptions()
548 runtime_options->Set(M::BootClassPathDexList, boot_class_path); in ProcessSpecialOptions()
553 if (runtime_options != nullptr) { in ProcessSpecialOptions()
554 runtime_options->Set(M::CompilerCallbacksPtr, compiler_callbacks); in ProcessSpecialOptions()
563 if (runtime_options != nullptr) { in ProcessSpecialOptions()
564 runtime_options->Set(M::ImageInstructionSet, image_isa); in ProcessSpecialOptions()
[all …]
Druntime.h129 RuntimeArgumentMap* runtime_options);
132 EXPORT static bool Create(RuntimeArgumentMap&& runtime_options)
1144 bool Init(RuntimeArgumentMap&& runtime_options)
DAndroid.bp58 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
409 "runtime_options.cc",
/art/runtime/oat/
Doat_file_assistant_context.h63 EXPORT explicit OatFileAssistantContext(std::unique_ptr<RuntimeOptions> runtime_options);
Doat_file_assistant_context.cc42 std::unique_ptr<OatFileAssistantContext::RuntimeOptions> runtime_options) in OatFileAssistantContext() argument
43 : runtime_options_(std::move(runtime_options)) { in OatFileAssistantContext()
/art/runtime/jni/
Djava_vm_ext.cc505 JavaVMExt::JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options) in JavaVMExt() argument
510 force_copy_(runtime_options.Exists(RuntimeArgumentMap::JniOptsForceCopy)), in JavaVMExt()
511 tracing_enabled_(runtime_options.Exists(RuntimeArgumentMap::JniTrace) in JavaVMExt()
513 trace_(runtime_options.GetOrDefault(RuntimeArgumentMap::JniTrace)), in JavaVMExt()
525 runtime_options.GetOrDefault(RuntimeArgumentMap::GlobalRefAllocStackTraceLimit)), in JavaVMExt()
529 SetCheckJniEnabled(runtime_options.Exists(RuntimeArgumentMap::CheckJni) || kIsDebugBuild); in JavaVMExt()
542 const RuntimeArgumentMap& runtime_options, in Create() argument
544 std::unique_ptr<JavaVMExt> java_vm(new JavaVMExt(runtime, runtime_options)); in Create()
Djava_vm_ext.h56 const RuntimeArgumentMap& runtime_options,
227 JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options);
/art/dex2oat/
Ddex2oat.cc1468 RuntimeArgumentMap runtime_options; in Setup() local
1469 if (!PrepareRuntimeOptions(&runtime_options, callbacks_.get())) { in Setup()
1542 runtime_options.Set(RuntimeArgumentMap::BootClassPathDexList, &opened_dex_files_); in Setup()
1544 if (!CreateRuntime(std::move(runtime_options))) { in Setup()
2670 bool PrepareRuntimeOptions(RuntimeArgumentMap* runtime_options, in PrepareRuntimeOptions() argument
2704 if (!Runtime::ParseOptions(raw_options, false, runtime_options)) { in PrepareRuntimeOptions()
2712 bool CreateRuntime(RuntimeArgumentMap&& runtime_options) { in CreateRuntime() argument
2719 if (!Runtime::Create(std::move(runtime_options))) { in CreateRuntime()