Lines Matching refs:args

598   RuntimeArgumentMap args = parser->ReleaseArgumentsMap();  in DoParse()  local
601 if (args.Exists(M::Help)) { in DoParse()
604 } else if (args.Exists(M::ShowVersion)) { in DoParse()
610 } else if (args.Exists(M::BootClassPath)) { in DoParse()
611 LOG(INFO) << "setting boot class path to " << args.Get(M::BootClassPath)->Join(); in DoParse()
614 if (args.GetOrDefault(M::Interpret)) { in DoParse()
615 if (args.Exists(M::UseJitCompilation) && *args.Get(M::UseJitCompilation)) { in DoParse()
619 args.Set(M::UseJitCompilation, false); in DoParse()
625 args.SetIfMissing(M::BootClassPath, ParseStringList<':'>::Split(env_bcp)); in DoParse()
630 args.SetIfMissing(M::ClassPath, std::string(getenv("CLASSPATH"))); in DoParse()
634 args.SetIfMissing(M::ParallelGCThreads, gc::Heap::kDefaultEnableParallelGC ? in DoParse()
639 LogVerbosity *log_verbosity = args.Get(M::Verbose); in DoParse()
647 SetRuntimeDebugFlagsEnabled(args.GetOrDefault(M::SlowDebug)); in DoParse()
650 Trace::SetDefaultClockSource(args.GetOrDefault(M::ProfileClock)); in DoParse()
652 if (!ProcessSpecialOptions(options, &args, nullptr)) { in DoParse()
662 bool low_memory_mode_ = args.Exists(M::LowMemoryMode); in DoParse()
664 background_collector_type_ = args.GetOrDefault(M::BackgroundGc); in DoParse()
666 XGcOption* xgc = args.Get(M::GcOption); in DoParse()
677 args.Set(M::BackgroundGc, BackgroundGcOption { background_collector_type_ }); in DoParse()
680 const ParseStringList<':'>* boot_class_path_locations = args.Get(M::BootClassPathLocations); in DoParse()
682 const ParseStringList<':'>* boot_class_path = args.Get(M::BootClassPath); in DoParse()
697 if (!args.Exists(M::CompilerCallbacksPtr) && !args.Exists(M::Image)) { in DoParse()
699 args.Set(M::Image, image); in DoParse()
703 if (args.GetOrDefault(M::HeapGrowthLimit) <= 0u || in DoParse()
704 args.GetOrDefault(M::HeapGrowthLimit) > args.GetOrDefault(M::MemoryMaximumSize)) { in DoParse()
705 args.Set(M::HeapGrowthLimit, args.GetOrDefault(M::MemoryMaximumSize)); in DoParse()
708 *runtime_options = std::move(args); in DoParse()