Searched refs:runtime_options (Results 1 – 9 of 9) sorted by relevance
/art/runtime/ |
D | parsed_options.h | 56 RuntimeArgumentMap* runtime_options); 67 RuntimeArgumentMap* runtime_options, 79 RuntimeArgumentMap* runtime_options);
|
D | parsed_options.cc | 52 RuntimeArgumentMap* runtime_options) { in Parse() argument 53 CHECK(runtime_options != nullptr); in Parse() 56 return parser.DoParse(options, ignore_unrecognized, runtime_options); in Parse() 387 RuntimeArgumentMap* runtime_options, in ProcessSpecialOptions() argument 400 if (runtime_options != nullptr) { in ProcessSpecialOptions() 401 runtime_options->Set(M::BootClassPathDexList, boot_class_path); in ProcessSpecialOptions() 406 if (runtime_options != nullptr) { in ProcessSpecialOptions() 407 runtime_options->Set(M::CompilerCallbacksPtr, compiler_callbacks); in ProcessSpecialOptions() 416 if (runtime_options != nullptr) { in ProcessSpecialOptions() 417 runtime_options->Set(M::ImageInstructionSet, image_isa); in ProcessSpecialOptions() [all …]
|
D | runtime.h | 117 RuntimeArgumentMap* runtime_options); 120 static bool Create(RuntimeArgumentMap&& runtime_options) 886 bool Init(RuntimeArgumentMap&& runtime_options)
|
D | Android.bp | 193 "runtime_options.cc", 412 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
|
/art/runtime/jni/ |
D | java_vm_ext.h | 51 const RuntimeArgumentMap& runtime_options, 216 JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options, std::string* error_msg);
|
D | java_vm_ext.cc | 482 const RuntimeArgumentMap& runtime_options, in JavaVMExt() argument 488 force_copy_(runtime_options.Exists(RuntimeArgumentMap::JniOptsForceCopy)), in JavaVMExt() 489 tracing_enabled_(runtime_options.Exists(RuntimeArgumentMap::JniTrace) in JavaVMExt() 491 trace_(runtime_options.GetOrDefault(RuntimeArgumentMap::JniTrace)), in JavaVMExt() 505 runtime_options.GetOrDefault(RuntimeArgumentMap::GlobalRefAllocStackTraceLimit)), in JavaVMExt() 509 SetCheckJniEnabled(runtime_options.Exists(RuntimeArgumentMap::CheckJni)); in JavaVMExt() 520 const RuntimeArgumentMap& runtime_options, in Create() argument 522 std::unique_ptr<JavaVMExt> java_vm(new JavaVMExt(runtime, runtime_options, error_msg)); in Create()
|
/art/libprofile/ |
D | Android.bp | 70 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
|
/art/dex2oat/ |
D | dex2oat.cc | 1487 RuntimeArgumentMap runtime_options; in Setup() local 1488 if (!PrepareRuntimeOptions(&runtime_options, callbacks_.get())) { in Setup() 1510 if (!CreateRuntime(std::move(runtime_options))) { in Setup() 1654 runtime_options.Set(RuntimeArgumentMap::BootClassPathDexList, &opened_dex_files_); in Setup() 1655 if (!CreateRuntime(std::move(runtime_options))) { in Setup() 2471 bool PrepareRuntimeOptions(RuntimeArgumentMap* runtime_options, in PrepareRuntimeOptions() argument 2536 if (!Runtime::ParseOptions(raw_options, false, runtime_options)) { in PrepareRuntimeOptions() 2544 bool CreateRuntime(RuntimeArgumentMap&& runtime_options) { in CreateRuntime() argument 2546 if (!Runtime::Create(std::move(runtime_options))) { in CreateRuntime()
|
/art/libartbase/ |
D | Android.bp | 126 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
|