Searched refs:RuntimeArgumentMap (Results 1 – 13 of 13) sorted by relevance
/art/runtime/ |
D | parsed_options.h | 37 struct RuntimeArgumentMap; 47 using RuntimeParser = CmdlineParser<RuntimeArgumentMap, RuntimeArgumentMap::Key>; 56 RuntimeArgumentMap* runtime_options); 67 RuntimeArgumentMap* runtime_options, 79 RuntimeArgumentMap* runtime_options);
|
D | runtime_options.h | 66 struct RuntimeArgumentMap : VariantMap<RuntimeArgumentMap, RuntimeArgumentMapKey> { struct 68 using VariantMap<RuntimeArgumentMap, RuntimeArgumentMapKey>::VariantMap;
|
D | parsed_options_test.cc | 74 RuntimeArgumentMap map; in TEST_F() 79 using Opt = RuntimeArgumentMap; in TEST_F() 120 RuntimeArgumentMap map; in TEST_F() 125 using Opt = RuntimeArgumentMap; in TEST_F() 137 RuntimeArgumentMap map; in TEST_F() 142 using Opt = RuntimeArgumentMap; in TEST_F() 151 using Opt = RuntimeArgumentMap; in TEST_F() 156 RuntimeArgumentMap map; in TEST_F() 175 RuntimeArgumentMap map; in TEST_F()
|
D | runtime_options.cc | 34 #define RUNTIME_OPTIONS_KEY(Type, Name, ...) const RuntimeArgumentMap::Key<Type> RuntimeArgumentMap…
|
D | parsed_options.cc | 52 RuntimeArgumentMap* runtime_options) { in Parse() 59 using RuntimeParser = CmdlineParser<RuntimeArgumentMap, RuntimeArgumentMap::Key>; 70 using M = RuntimeArgumentMap; in MakeParser() 387 RuntimeArgumentMap* runtime_options, in ProcessSpecialOptions() 389 using M = RuntimeArgumentMap; in ProcessSpecialOptions() 497 RuntimeArgumentMap* runtime_options) { in DoParse() 530 using M = RuntimeArgumentMap; in DoParse() 531 RuntimeArgumentMap args = parser->ReleaseArgumentsMap(); in DoParse()
|
D | runtime.h | 99 struct RuntimeArgumentMap; 117 RuntimeArgumentMap* runtime_options); 120 static bool Create(RuntimeArgumentMap&& runtime_options) 886 bool Init(RuntimeArgumentMap&& runtime_options)
|
D | runtime.cc | 696 RuntimeArgumentMap* runtime_options) { in ParseOptions() 715 bool Runtime::Create(RuntimeArgumentMap&& runtime_options) { in Create() 733 RuntimeArgumentMap runtime_options; in Create() 1117 bool Runtime::Init(RuntimeArgumentMap&& runtime_options_in) { in Init() 1122 using Opt = RuntimeArgumentMap; in Init()
|
/art/runtime/jit/ |
D | jit.cc | 84 JitOptions* JitOptions::CreateFromRuntimeArguments(const RuntimeArgumentMap& options) { in CreateFromRuntimeArguments() 86 jit_options->use_jit_compilation_ = options.GetOrDefault(RuntimeArgumentMap::UseJitCompilation); in CreateFromRuntimeArguments() 89 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheInitialCapacity); in CreateFromRuntimeArguments() 91 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheMaxCapacity); in CreateFromRuntimeArguments() 93 options.Exists(RuntimeArgumentMap::DumpJITInfoOnShutdown); in CreateFromRuntimeArguments() 95 options.GetOrDefault(RuntimeArgumentMap::ProfileSaverOpts); in CreateFromRuntimeArguments() 97 options.GetOrDefault(RuntimeArgumentMap::JITPoolThreadPthreadPriority); in CreateFromRuntimeArguments() 99 if (options.Exists(RuntimeArgumentMap::JITCompileThreshold)) { in CreateFromRuntimeArguments() 100 jit_options->compile_threshold_ = *options.Get(RuntimeArgumentMap::JITCompileThreshold); in CreateFromRuntimeArguments() 111 if (options.Exists(RuntimeArgumentMap::JITWarmupThreshold)) { in CreateFromRuntimeArguments() [all …]
|
D | jit.h | 35 struct RuntimeArgumentMap; 58 static JitOptions* CreateFromRuntimeArguments(const RuntimeArgumentMap& options);
|
/art/runtime/jni/ |
D | java_vm_ext.h | 39 struct RuntimeArgumentMap; 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() 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()
|
/art/cmdline/ |
D | cmdline_parser_test.cc | 132 using M = RuntimeArgumentMap; 184 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap(); \ 191 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap(); \ 210 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap();\ 222 RuntimeArgumentMap args = parser.ReleaseArgumentsMap(); in TEST_F()
|
/art/dex2oat/ |
D | dex2oat.cc | 1487 RuntimeArgumentMap runtime_options; in Setup() 1654 runtime_options.Set(RuntimeArgumentMap::BootClassPathDexList, &opened_dex_files_); in Setup() 2471 bool PrepareRuntimeOptions(RuntimeArgumentMap* runtime_options, in PrepareRuntimeOptions() 2544 bool CreateRuntime(RuntimeArgumentMap&& runtime_options) { in CreateRuntime()
|