src/hotspot/share/services/diagnosticCommand.cpp
changeset 49650 c42db4d81e33
parent 49611 973c9504178e
child 49750 bdcfe8154201
equal deleted inserted replaced
49649:17c6ab93710e 49650:c42db4d81e33
   922 }
   922 }
   923 
   923 
   924 //---<  BEGIN  >--- CodeHeap State Analytics.
   924 //---<  BEGIN  >--- CodeHeap State Analytics.
   925 CodeHeapAnalyticsDCmd::CodeHeapAnalyticsDCmd(outputStream* output, bool heap) :
   925 CodeHeapAnalyticsDCmd::CodeHeapAnalyticsDCmd(outputStream* output, bool heap) :
   926                                              DCmdWithParser(output, heap),
   926                                              DCmdWithParser(output, heap),
   927   _function("function", "Function to be performed (aggregate, UsedSpace, FreeSpace, MethodCount, MethodSpace, MethodAge, MethodNames, discard", "STRING", false, "all"),
   927   _function("function", "Function to be performed (aggregate, UsedSpace, FreeSpace, MethodCount, MethodSpace, MethodAge, discard", "STRING", false, "all"),
   928   _granularity("granularity", "Detail level - smaller value -> more detail", "STRING", false, "4096") {
   928   _granularity("granularity", "Detail level - smaller value -> more detail", "STRING", false, "4096") {
   929   _dcmdparser.add_dcmd_argument(&_function);
   929   _dcmdparser.add_dcmd_argument(&_function);
   930   _dcmdparser.add_dcmd_argument(&_granularity);
   930   _dcmdparser.add_dcmd_argument(&_granularity);
   931 }
   931 }
   932 
   932