Searched refs:getCurrentMetricValue (Results 1 - 3 of 3) sorted by relevance

/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/
H A DDebugMethodMetrics.java100 long getCurrentMetricValue(String metricName); method in interface:DebugMethodMetrics
103 * @see #getCurrentMetricValue(String)
105 long getCurrentMetricValue(String format, Object arg1); method in interface:DebugMethodMetrics
108 * @see #getCurrentMetricValue(String)
110 long getCurrentMetricValue(String format, Object arg1, Object arg2); method in interface:DebugMethodMetrics
113 * @see #getCurrentMetricValue(String)
115 long getCurrentMetricValue(String format, Object arg1, Object arg2, Object arg3); method in interface:DebugMethodMetrics
H A DDebug.java1391 public long getCurrentMetricValue(String metricName) {
1396 public long getCurrentMetricValue(String format, Object arg1) {
1401 public long getCurrentMetricValue(String format, Object arg1, Object arg2) {
1406 public long getCurrentMetricValue(String format, Object arg1, Object arg2, Object arg3) {
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/internal/method/
H A DMethodMetricsImpl.java137 public long getCurrentMetricValue(String metricName) { method in class:MethodMetricsImpl
179 public long getCurrentMetricValue(String format, Object arg1) { method in class:MethodMetricsImpl
180 return getCurrentMetricValue(String.format(format, arg1));
184 public long getCurrentMetricValue(String format, Object arg1, Object arg2) { method in class:MethodMetricsImpl
185 return getCurrentMetricValue(String.format(format, arg1, arg2));
189 public long getCurrentMetricValue(String format, Object arg1, Object arg2, Object arg3) { method in class:MethodMetricsImpl
190 return getCurrentMetricValue(String.format(format, arg1, arg2, arg3));

Completed in 76 milliseconds