Example #1
0
 void set_prev_time(jlong time, TRAPS)          {
   MethodCounters* mcs = get_method_counters(CHECK);
   if (mcs != NULL) {
     mcs->set_prev_time(time);
   }
 }
Example #2
0
 void set_prev_time(jlong time) {
   MethodCounters* mcs = method_counters();
   if (mcs != NULL) {
     mcs->set_prev_time(time);
   }
 }