Home | History | Annotate | Download | only in util

Lines Matching refs:tag

30     /** Tag for measuring start up time of Live TV. */
36 /** Returns the global duration timer by tag. */
37 public static DurationTimer getTimer(String tag) {
38 if (sTimerMap.get(tag) != null) {
39 return sTimerMap.get(tag);
41 DurationTimer timer = new DurationTimer(tag, true);
42 sTimerMap.put(tag, timer);
46 /** Removes the global duration timer by tag. */
47 public static DurationTimer removeTimer(String tag) {
48 return sTimerMap.remove(tag);