Searched defs:runtime_options (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Dparsed_options.cc30 #include "runtime_options.h"
46 RuntimeArgumentMap* runtime_options) {
47 CHECK(runtime_options != nullptr);
50 return parser.DoParse(options, ignore_unrecognized, runtime_options);
317 // If runtime_options is not null, put the options in there.
320 RuntimeArgumentMap* runtime_options,
333 if (runtime_options != nullptr) {
334 runtime_options->Set(M::BootClassPathDexList, boot_class_path);
339 if (runtime_options != nullptr) {
340 runtime_options
44 Parse(const RuntimeOptions& options, bool ignore_unrecognized, RuntimeArgumentMap* runtime_options) argument
319 ProcessSpecialOptions(const RuntimeOptions& options, RuntimeArgumentMap* runtime_options, std::vector<std::string>* out_options) argument
428 DoParse(const RuntimeOptions& options, bool ignore_unrecognized, RuntimeArgumentMap* runtime_options) argument
[all...]
H A Djava_vm_ext.cc37 #include "runtime_options.h"
423 JavaVMExt::JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options) argument
428 force_copy_(runtime_options.Exists(RuntimeArgumentMap::JniOptsForceCopy)),
429 tracing_enabled_(runtime_options.Exists(RuntimeArgumentMap::JniTrace)
431 trace_(runtime_options.GetOrDefault(RuntimeArgumentMap::JniTrace)),
441 SetCheckJniEnabled(runtime_options.Exists(RuntimeArgumentMap::CheckJni));
H A Druntime.cc129 #include "runtime_options.h"
476 RuntimeArgumentMap* runtime_options) {
478 bool parsed = ParsedOptions::Parse(raw_options, ignore_unrecognized, runtime_options);
486 bool Runtime::Create(RuntimeArgumentMap&& runtime_options) { argument
492 if (!instance_->Init(std::move(runtime_options))) {
503 RuntimeArgumentMap runtime_options; local
504 return ParseOptions(raw_options, ignore_unrecognized, &runtime_options) &&
505 Create(std::move(runtime_options));
937 RuntimeArgumentMap runtime_options(std::move(runtime_options_in));
950 Thread::SetSensitiveThreadHook(runtime_options
474 ParseOptions(const RuntimeOptions& raw_options, bool ignore_unrecognized, RuntimeArgumentMap* runtime_options) argument
[all...]
/art/dex2oat/
H A Ddex2oat.cc76 #include "runtime_options.h"
1319 RuntimeArgumentMap runtime_options; local
1320 if (!PrepareRuntimeOptions(&runtime_options)) {
1341 if (!CreateRuntime(std::move(runtime_options))) {
1456 runtime_options.Set(RuntimeArgumentMap::BootClassPathDexList, &opened_dex_files_);
1457 if (!CreateRuntime(std::move(runtime_options))) {
2170 bool PrepareRuntimeOptions(RuntimeArgumentMap* runtime_options) { argument
2221 if (!Runtime::ParseOptions(raw_options, false, runtime_options)) {
2229 bool CreateRuntime(RuntimeArgumentMap&& runtime_options) { argument
2231 if (!Runtime::Create(std::move(runtime_options))) {
[all...]

Completed in 183 milliseconds