Home
last modified time | relevance | path

Searched refs:raw_options (Results 1 – 3 of 3) sorted by relevance

/art/dex2oat/
Ddex2oat.cc2164 RuntimeOptions raw_options; in PrepareRuntimeOptions() local
2168 raw_options.push_back(std::make_pair(boot_class_path, nullptr)); in PrepareRuntimeOptions()
2171 raw_options.push_back(std::make_pair(boot_class_path_locations, nullptr)); in PrepareRuntimeOptions()
2175 raw_options.push_back(std::make_pair(boot_image_option, nullptr)); in PrepareRuntimeOptions()
2178 raw_options.push_back(std::make_pair(runtime_args_[i], nullptr)); in PrepareRuntimeOptions()
2181 raw_options.push_back(std::make_pair("compilercallbacks", callbacks_.get())); in PrepareRuntimeOptions()
2182 raw_options.push_back( in PrepareRuntimeOptions()
2189 raw_options.push_back(std::make_pair("-Xno-dex-file-fallback", nullptr)); in PrepareRuntimeOptions()
2193 raw_options.push_back(std::make_pair("-Xno-sig-chain", nullptr)); in PrepareRuntimeOptions()
2197 raw_options.push_back(std::make_pair("-XX:DisableHSpaceCompactForOOM", nullptr)); in PrepareRuntimeOptions()
[all …]
/art/runtime/
Druntime.h116 static bool ParseOptions(const RuntimeOptions& raw_options,
125 static bool Create(const RuntimeOptions& raw_options, bool ignore_unrecognized)
Druntime.cc449 bool Runtime::ParseOptions(const RuntimeOptions& raw_options, in ParseOptions() argument
453 bool parsed = ParsedOptions::Parse(raw_options, ignore_unrecognized, runtime_options); in ParseOptions()
477 bool Runtime::Create(const RuntimeOptions& raw_options, bool ignore_unrecognized) { in Create() argument
479 return ParseOptions(raw_options, ignore_unrecognized, &runtime_options) && in Create()