Home
last modified time | relevance | path

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

/art/runtime/
Druntime.cc789 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 …]
Dparsed_options.cc45 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 …]
Dparsed_options.h54 RuntimeArgumentMap* runtime_options);
65 RuntimeArgumentMap* runtime_options,
76 RuntimeArgumentMap* runtime_options);
Djava_vm_ext.cc363 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()
Djava_vm_ext.h41 JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options);
DAndroid.mk158 runtime_options.cc \
/art/dex2oat/
Ddex2oat.cc1154 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 …]