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

/openjdk7/jdk/src/share/demo/management/VerboseGC/
H A DPrintGCStat.java137 System.out.print(" Used=" + formatBytes(u.getUsed()));
138 System.out.print(" Committed=" + formatBytes(u.getCommitted()));
146 private String formatBytes(long bytes) { method in class:PrintGCStat
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DFormatter.java169 static String formatBytes(long v, boolean html) { method in class:Formatter
170 return formatBytes(v, v, html);
173 static String formatBytes(long v, long vMax) { method in class:Formatter
174 return formatBytes(v, vMax, false);
177 static String formatBytes(long v, long vMax, boolean html) { method in class:Formatter

Completed in 41 milliseconds