Home
last modified time | relevance | path

Searched refs:gc_options (Results 1 – 1 of 1) sorted by relevance

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