Searched refs:raw_options (Results 1 – 3 of 3) sorted by relevance
/art/dex2oat/ |
D | dex2oat.cc | 2564 RuntimeOptions raw_options; in PrepareRuntimeOptions() local 2568 raw_options.push_back(std::make_pair(boot_class_path, nullptr)); in PrepareRuntimeOptions() 2571 raw_options.push_back(std::make_pair(boot_class_path_locations, nullptr)); in PrepareRuntimeOptions() 2575 raw_options.push_back(std::make_pair(boot_image_option, nullptr)); in PrepareRuntimeOptions() 2578 raw_options.push_back(std::make_pair(runtime_args_[i], nullptr)); in PrepareRuntimeOptions() 2581 raw_options.push_back(std::make_pair("compilercallbacks", callbacks_.get())); in PrepareRuntimeOptions() 2582 raw_options.push_back( in PrepareRuntimeOptions() 2589 raw_options.push_back(std::make_pair("-Xno-dex-file-fallback", nullptr)); in PrepareRuntimeOptions() 2592 raw_options.push_back(std::make_pair("-Xnoimage-dex2oat", nullptr)); in PrepareRuntimeOptions() 2595 raw_options.push_back(std::make_pair("-Xno-sig-chain", nullptr)); in PrepareRuntimeOptions() [all …]
|
/art/runtime/ |
D | runtime.h | 103 static bool ParseOptions(const RuntimeOptions& raw_options, 112 static bool Create(const RuntimeOptions& raw_options, bool ignore_unrecognized)
|
D | runtime.cc | 590 bool Runtime::ParseOptions(const RuntimeOptions& raw_options, in ParseOptions() argument 594 bool parsed = ParsedOptions::Parse(raw_options, ignore_unrecognized, runtime_options); in ParseOptions() 627 bool Runtime::Create(const RuntimeOptions& raw_options, bool ignore_unrecognized) { in Create() argument 629 return ParseOptions(raw_options, ignore_unrecognized, &runtime_options) && in Create()
|