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

/art/runtime/
H A Druntime.cc527 std::vector<std::string> gc_options; local
528 Split(option.substr(strlen("-Xgc:")), ',', gc_options);
529 for (size_t i = 0; i < gc_options.size(); ++i) {
530 if (gc_options[i] == "noconcurrent") {
532 } else if (gc_options[i] == "concurrent") {
535 LOG(WARNING) << "Ignoring unknown -Xgc option: " << gc_options[i];

Completed in 26 milliseconds