HomeSort by relevance Sort by last modified time
    Searched refs:RuntimeArgumentMap (Results 1 - 13 of 13) sorted by null

  /art/runtime/
runtime_options.cc 33 #define RUNTIME_OPTIONS_KEY(Type, Name, ...) const RuntimeArgumentMap::Key<Type> RuntimeArgumentMap::Name {__VA_ARGS__};
runtime_options.h 46 // Define a key that is usable with a RuntimeArgumentMap.
61 // auto map = RuntimeArgumentMap();
62 // map.Set(RuntimeArgumentMap::HeapTargetUtilization, 5.0);
63 // double *target_utilization = map.Get(RuntimeArgumentMap);
65 struct RuntimeArgumentMap : VariantMap<RuntimeArgumentMap, RuntimeArgumentMapKey> {
67 using VariantMap<RuntimeArgumentMap, RuntimeArgumentMapKey>::VariantMap;
80 // using RuntimeOptions = RuntimeArgumentMap;
parsed_options.h 36 struct RuntimeArgumentMap;
46 using RuntimeParser = CmdlineParser<RuntimeArgumentMap, RuntimeArgumentMap::Key>;
47 // Create a parser that can turn user-defined input into a RuntimeArgumentMap.
55 RuntimeArgumentMap* runtime_options);
66 RuntimeArgumentMap* runtime_options,
78 RuntimeArgumentMap* runtime_options);
parsed_options_test.cc 73 RuntimeArgumentMap map;
78 using Opt = RuntimeArgumentMap;
117 RuntimeArgumentMap map;
122 using Opt = RuntimeArgumentMap;
131 using Opt = RuntimeArgumentMap;
136 RuntimeArgumentMap map;
155 RuntimeArgumentMap map;
java_vm_ext.h 39 struct RuntimeArgumentMap;
51 const RuntimeArgumentMap& runtime_options,
210 JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options, std::string* error_msg);
parsed_options.cc 51 RuntimeArgumentMap* runtime_options) {
58 using RuntimeParser = CmdlineParser<RuntimeArgumentMap, RuntimeArgumentMap::Key>;
67 using M = RuntimeArgumentMap;
361 RuntimeArgumentMap* runtime_options,
363 using M = RuntimeArgumentMap;
471 RuntimeArgumentMap* runtime_options) {
504 using M = RuntimeArgumentMap;
505 RuntimeArgumentMap args = parser->ReleaseArgumentsMap();
    [all...]
java_vm_ext.cc 453 const RuntimeArgumentMap& runtime_options,
459 force_copy_(runtime_options.Exists(RuntimeArgumentMap::JniOptsForceCopy)),
460 tracing_enabled_(runtime_options.Exists(RuntimeArgumentMap::JniTrace)
462 trace_(runtime_options.GetOrDefault(RuntimeArgumentMap::JniTrace)),
476 runtime_options.GetOrDefault(RuntimeArgumentMap::GlobalRefAllocStackTraceLimit)),
480 SetCheckJniEnabled(runtime_options.Exists(RuntimeArgumentMap::CheckJni));
490 const RuntimeArgumentMap& runtime_options,
    [all...]
runtime.h 95 struct RuntimeArgumentMap;
112 RuntimeArgumentMap* runtime_options);
115 static bool Create(RuntimeArgumentMap&& runtime_options)
786 bool Init(RuntimeArgumentMap&& runtime_options)
    [all...]
runtime.cc 627 RuntimeArgumentMap* runtime_options) {
646 bool Runtime::Create(RuntimeArgumentMap&& runtime_options) {
664 RuntimeArgumentMap runtime_options;
    [all...]
  /art/runtime/jit/
jit.cc 69 JitOptions* JitOptions::CreateFromRuntimeArguments(const RuntimeArgumentMap& options) {
71 jit_options->use_jit_compilation_ = options.GetOrDefault(RuntimeArgumentMap::UseJitCompilation);
74 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheInitialCapacity);
76 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheMaxCapacity);
78 options.Exists(RuntimeArgumentMap::DumpJITInfoOnShutdown);
80 options.GetOrDefault(RuntimeArgumentMap::ProfileSaverOpts);
82 if (options.Exists(RuntimeArgumentMap::JITCompileThreshold)) {
83 jit_options->compile_threshold_ = *options.Get(RuntimeArgumentMap::JITCompileThreshold);
96 if (options.Exists(RuntimeArgumentMap::JITWarmupThreshold)) {
97 jit_options->warmup_threshold_ = *options.Get(RuntimeArgumentMap::JITWarmupThreshold)
    [all...]
jit.h 32 struct RuntimeArgumentMap;
215 static JitOptions* CreateFromRuntimeArguments(const RuntimeArgumentMap& options);
  /art/cmdline/
cmdline_parser_test.cc 126 using M = RuntimeArgumentMap;
178 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap(); \
185 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap(); \
204 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap();\
216 RuntimeArgumentMap args = parser.ReleaseArgumentsMap();
  /art/dex2oat/
dex2oat.cc     [all...]

Completed in 344 milliseconds