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

/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.cpp595 const char* try_name = make_log_name(log_name, NULL); local
596 fileStream* file = new(ResourceObj::C_HEAP, mtInternal) fileStream(try_name);
601 "Warning: Cannot open log file: %s\n", try_name);
604 FREE_C_HEAP_ARRAY(char, try_name, mtInternal);
605 try_name = make_log_name("hs_pid%p.log", os::get_temp_directory());
607 "Warning: Forcing option -XX:LogFile=%s\n", try_name);
610 file = new(ResourceObj::C_HEAP, mtInternal) fileStream(try_name);
611 FREE_C_HEAP_ARRAY(char, try_name, mtInternal);

Completed in 48 milliseconds