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

/openjdk7/jdk/src/share/classes/sun/misc/
H A DPerfCounter.java50 public class PerfCounter { class
63 private PerfCounter(String name, int type) { method in class:PerfCounter
70 static PerfCounter newPerfCounter(String name) {
71 return new PerfCounter(name, V_Variable);
74 static PerfCounter newConstantPerfCounter(String name) {
75 PerfCounter c = new PerfCounter(name, V_Constant);
128 static final PerfCounter pdt = newPerfCounter("sun.classloader.parentDelegationTime");
129 static final PerfCounter lc = newPerfCounter("sun.classloader.findClasses");
130 static final PerfCounter lc
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfData.hpp101 * - PerfLongCounter (alias: PerfCounter)
431 * The PerfLongCounter class, and its alias PerfCounter, implement
459 typedef PerfLongCounter PerfCounter; typedef
849 static PerfCounter* create_counter(CounterNS ns, const char* name,
854 static PerfCounter* create_counter(CounterNS ns, const char* name,
859 static PerfCounter* create_counter(CounterNS ns, const char* name,
864 static PerfCounter* create_counter(CounterNS ns, const char* name,
889 * this class will administer a PerfCounter used as a time accumulator
894 * static PerfCounter* my_time_counter = PerfDataManager::create_counter("my.time.counter", PerfData::U_Ticks, 0LL, CHECK);
938 * the event in two separate PerfCounter instance
[all...]

Completed in 24 milliseconds