Searched refs:raw_options (Results 1 – 3 of 3) sorted by relevance
/art/dex2oat/ |
D | dex2oat.cc | 2778 RuntimeOptions raw_options; in PrepareRuntimeOptions() local 2782 raw_options.push_back(std::make_pair(boot_class_path, nullptr)); in PrepareRuntimeOptions() 2785 raw_options.push_back(std::make_pair(boot_class_path_locations, nullptr)); in PrepareRuntimeOptions() 2789 raw_options.push_back(std::make_pair(boot_image_option, nullptr)); in PrepareRuntimeOptions() 2792 raw_options.push_back(std::make_pair(runtime_args_[i], nullptr)); in PrepareRuntimeOptions() 2795 raw_options.push_back(std::make_pair("compilercallbacks", callbacks)); in PrepareRuntimeOptions() 2796 raw_options.push_back( in PrepareRuntimeOptions() 2801 raw_options.push_back(std::make_pair("-Xnoimage-dex2oat", nullptr)); in PrepareRuntimeOptions() 2804 raw_options.push_back(std::make_pair("-Xno-sig-chain", nullptr)); in PrepareRuntimeOptions() 2808 raw_options.push_back(std::make_pair("-XX:DisableHSpaceCompactForOOM", nullptr)); in PrepareRuntimeOptions() [all …]
|
/art/runtime/ |
D | runtime.h | 119 static bool ParseOptions(const RuntimeOptions& raw_options, 128 static bool Create(const RuntimeOptions& raw_options, bool ignore_unrecognized)
|
D | runtime.cc | 724 bool Runtime::ParseOptions(const RuntimeOptions& raw_options, in ParseOptions() argument 729 bool parsed = ParsedOptions::Parse(raw_options, ignore_unrecognized, runtime_options); in ParseOptions() 762 bool Runtime::Create(const RuntimeOptions& raw_options, bool ignore_unrecognized) { in Create() argument 764 return ParseOptions(raw_options, ignore_unrecognized, &runtime_options) && in Create()
|