Lines Matching full:substr
395 parsed->boot_class_path_string_ = option.substr(strlen("-Xbootclasspath:")).data();
410 parsed->image_ = option.substr(strlen("-Ximage:")).data();
414 std::string tail(option.substr(option[1] == 'X' ? 10 : 15));
421 size_t size = ParseMemoryOption(option.substr(strlen("-Xms")).c_str(), 1024);
432 size_t size = ParseMemoryOption(option.substr(strlen("-Xmx")).c_str(), 1024);
443 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapGrowthLimit=")).c_str(), 1024);
454 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMinFree=")).c_str(), 1024);
465 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMaxFree=")).c_str(), 1024);
476 std::istringstream iss(option.substr(strlen("-XX:HeapTargetUtilization=")));
491 ParseMemoryOption(option.substr(strlen("-XX:ParallelGCThreads=")).c_str(), 1024);
494 ParseMemoryOption(option.substr(strlen("-XX:ConcGCThreads=")).c_str(), 1024);
496 size_t size = ParseMemoryOption(option.substr(strlen("-Xss")).c_str(), 1);
508 ParseMemoryOption(option.substr(strlen("-XX:LongPauseLogThreshold=")).c_str(), 1024);
511 ParseMemoryOption(option.substr(strlen("-XX:LongGCLogThreshold")).c_str(), 1024);
517 parsed->properties_.push_back(option.substr(strlen("-D")));
519 parsed->jni_trace_ = option.substr(strlen("-Xjnitrace:"));
528 Split(option.substr(strlen("-Xgc:")), ',', gc_options);
542 Split(option.substr(strlen("-verbose:")), ',', verbose_options);
575 parsed->stack_trace_file_ = option.substr(strlen("-Xstacktracefile:"));
592 parsed->method_trace_file_ = option.substr(strlen("-Xmethod-trace-file:"));