Home
last modified time | relevance | path

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

/art/runtime/
Druntime.cc747 RuntimeArgumentMap* runtime_options) { in ParseOptions() argument
750 bool parsed = ParsedOptions::Parse(raw_options, ignore_unrecognized, runtime_options); in ParseOptions()
766 bool Runtime::Create(RuntimeArgumentMap&& runtime_options) { in Create() argument
773 if (!instance_->Init(std::move(runtime_options))) { in Create()
784 RuntimeArgumentMap runtime_options; in Create() local
785 return ParseOptions(raw_options, ignore_unrecognized, &runtime_options) && in Create()
786 Create(std::move(runtime_options)); in Create()
1336 Opt runtime_options(std::move(runtime_options_in)); in Init() local
1343 deny_art_apex_data_files_ = runtime_options.Exists(Opt::DenyArtApexDataFiles); in Init()
1350 if (runtime_options.Exists(Opt::UseStderrLogger)) { in Init()
[all …]
Dparsed_options.h56 RuntimeArgumentMap* runtime_options);
67 RuntimeArgumentMap* runtime_options,
79 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()
482 RuntimeArgumentMap* runtime_options, in ProcessSpecialOptions() argument
495 if (runtime_options != nullptr) { in ProcessSpecialOptions()
496 runtime_options->Set(M::BootClassPathDexList, boot_class_path); in ProcessSpecialOptions()
501 if (runtime_options != nullptr) { in ProcessSpecialOptions()
502 runtime_options->Set(M::CompilerCallbacksPtr, compiler_callbacks); in ProcessSpecialOptions()
511 if (runtime_options != nullptr) { in ProcessSpecialOptions()
512 runtime_options->Set(M::ImageInstructionSet, image_isa); in ProcessSpecialOptions()
[all …]
Druntime.h124 RuntimeArgumentMap* runtime_options);
127 static bool Create(RuntimeArgumentMap&& runtime_options)
1056 bool Init(RuntimeArgumentMap&& runtime_options)
DAndroid.bp238 "runtime_options.cc",
471 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
/art/runtime/jni/
Djava_vm_ext.h52 const RuntimeArgumentMap& runtime_options,
217 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/dex2oat/
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()