Example #1
0
 static PerfCounter* create_counter(CounterNS ns, const char* name,
                                    PerfData::Units u,
                                    PerfSampleHelper* sh, TRAPS) {
   return create_long_counter(ns, name, u, sh, THREAD);
 }
Example #2
0
 static PerfLongCounter* create_long_counter(CounterNS ns, const char* name,
                                             PerfData::Units u, TRAPS) {
   return create_long_counter(ns, name, u, (jlong)0, THREAD);
 };
Example #3
0
 static PerfCounter* create_counter(CounterNS ns, const char* name,
                                    PerfData::Units u, jlong* sp, TRAPS) {
   return create_long_counter(ns, name, u, sp, THREAD);
 }
Example #4
0
 static PerfCounter* create_counter(CounterNS ns, const char* name,
                                    PerfData::Units u, TRAPS) {
   return create_long_counter(ns, name, u, (jlong)0, CHECK_NULL);
 }