Searched refs:runtime_options (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ |
D | runtime.cc | 789 RuntimeArgumentMap runtime_options; in Init() local 791 ParsedOptions::Create(raw_options, ignore_unrecognized, &runtime_options)); in Init() 801 Monitor::Init(runtime_options.GetOrDefault(Opt::LockProfThreshold), in Init() 802 runtime_options.GetOrDefault(Opt::HookIsSensitiveThread)); in Init() 804 boot_class_path_string_ = runtime_options.ReleaseOrDefault(Opt::BootClassPath); in Init() 805 class_path_string_ = runtime_options.ReleaseOrDefault(Opt::ClassPath); in Init() 806 properties_ = runtime_options.ReleaseOrDefault(Opt::PropertiesList); in Init() 808 compiler_callbacks_ = runtime_options.GetOrDefault(Opt::CompilerCallbacksPtr); in Init() 809 patchoat_executable_ = runtime_options.ReleaseOrDefault(Opt::PatchOat); in Init() 810 must_relocate_ = runtime_options.GetOrDefault(Opt::Relocate); in Init() [all …]
|
D | parsed_options.cc | 45 RuntimeArgumentMap* runtime_options) { in Create() argument 46 CHECK(runtime_options != nullptr); in Create() 49 if (parsed->Parse(options, ignore_unrecognized, runtime_options)) { in Create() 288 RuntimeArgumentMap* runtime_options, in ProcessSpecialOptions() argument 301 if (runtime_options != nullptr) { in ProcessSpecialOptions() 302 runtime_options->Set(M::BootClassPathDexList, boot_class_path); in ProcessSpecialOptions() 307 if (runtime_options != nullptr) { in ProcessSpecialOptions() 308 runtime_options->Set(M::CompilerCallbacksPtr, compiler_callbacks); in ProcessSpecialOptions() 317 if (runtime_options != nullptr) { in ProcessSpecialOptions() 318 runtime_options->Set(M::ImageInstructionSet, image_isa); in ProcessSpecialOptions() [all …]
|
D | parsed_options.h | 54 RuntimeArgumentMap* runtime_options); 65 RuntimeArgumentMap* runtime_options, 76 RuntimeArgumentMap* runtime_options);
|
D | java_vm_ext.cc | 363 JavaVMExt::JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options) in JavaVMExt() argument 368 force_copy_(runtime_options.Exists(RuntimeArgumentMap::JniOptsForceCopy)), in JavaVMExt() 369 tracing_enabled_(runtime_options.Exists(RuntimeArgumentMap::JniTrace) in JavaVMExt() 371 trace_(runtime_options.GetOrDefault(RuntimeArgumentMap::JniTrace)), in JavaVMExt() 381 SetCheckJniEnabled(runtime_options.Exists(RuntimeArgumentMap::CheckJni)); in JavaVMExt()
|
D | java_vm_ext.h | 41 JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options);
|
D | Android.mk | 158 runtime_options.cc \
|
/art/dex2oat/ |
D | dex2oat.cc | 1154 RuntimeOptions runtime_options; in Setup() local 1159 runtime_options.push_back(std::make_pair(boot_class_path, nullptr)); in Setup() 1162 runtime_options.push_back(std::make_pair(boot_class_path_locations, nullptr)); in Setup() 1164 runtime_options.push_back(std::make_pair(boot_image_option_, nullptr)); in Setup() 1167 runtime_options.push_back(std::make_pair(runtime_args_[i], nullptr)); in Setup() 1177 runtime_options.push_back(std::make_pair("compilercallbacks", callbacks_.get())); in Setup() 1178 runtime_options.push_back( in Setup() 1185 runtime_options.push_back(std::make_pair("-Xno-dex-file-fallback", nullptr)); in Setup() 1188 if (!CreateRuntime(runtime_options)) { in Setup() 1685 bool CreateRuntime(const RuntimeOptions& runtime_options) in CreateRuntime() argument [all …]
|