Searched refs:raw_options (Results 1 – 3 of 3) sorted by relevance
/art/dex2oat/ |
D | dex2oat.cc | 2473 RuntimeOptions raw_options; in PrepareRuntimeOptions() local 2477 raw_options.push_back(std::make_pair(boot_class_path, nullptr)); in PrepareRuntimeOptions() 2480 raw_options.push_back(std::make_pair(boot_class_path_locations, nullptr)); in PrepareRuntimeOptions() 2484 raw_options.push_back(std::make_pair(boot_image_option, nullptr)); in PrepareRuntimeOptions() 2487 raw_options.push_back(std::make_pair(runtime_args_[i], nullptr)); in PrepareRuntimeOptions() 2490 raw_options.push_back(std::make_pair("compilercallbacks", callbacks)); in PrepareRuntimeOptions() 2491 raw_options.push_back( in PrepareRuntimeOptions() 2499 raw_options.push_back(std::make_pair("-Xno-dex-file-fallback", nullptr)); in PrepareRuntimeOptions() 2502 raw_options.push_back(std::make_pair("-Xnoimage-dex2oat", nullptr)); in PrepareRuntimeOptions() 2505 raw_options.push_back(std::make_pair("-Xno-sig-chain", nullptr)); in PrepareRuntimeOptions() [all …]
|
/art/runtime/ |
D | runtime.h | 115 static bool ParseOptions(const RuntimeOptions& raw_options, 124 static bool Create(const RuntimeOptions& raw_options, bool ignore_unrecognized)
|
D | runtime.cc | 694 bool Runtime::ParseOptions(const RuntimeOptions& raw_options, in ParseOptions() argument 699 bool parsed = ParsedOptions::Parse(raw_options, ignore_unrecognized, runtime_options); in ParseOptions() 732 bool Runtime::Create(const RuntimeOptions& raw_options, bool ignore_unrecognized) { in Create() argument 734 return ParseOptions(raw_options, ignore_unrecognized, &runtime_options) && in Create()
|