Searched refs:formatBytes (Results 1 - 4 of 4) 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
H A DMemoryTab.java762 formatBytes(used, true),
763 formatBytes(committed, true),
764 formatBytes(max, true)));
H A DPlotter.java802 s = formatBytes(v, vMax);

Completed in 34 milliseconds