Searched refs:mStartTimes (Results 1 – 2 of 2) sorted by relevance
40 private final Map<String, Long> mStartTimes = Maps.newConcurrentMap(); field in AnalyticsTimer57 mStartTimes.put(id, SystemClock.uptimeMillis()); in trackStart()90 final Long value = isDestructive ? mStartTimes.remove(id) : mStartTimes.get(id); in logDurationAndReturn()103 mStartTimes.remove(id); in stopTracking()
32 : mClockId(clockId), mStartTime(getTimeInMicroSec()), mStartTimes(), mTimes(), in Profiler()46 mStartTimes[id] = getTimeInMicroSec(); in startTimer()50 mTimes[id] += static_cast<float>(getTimeInMicroSec() - mStartTimes[id]) / 1000.0f; in endTimer()61 std::unordered_map<int, int64_t> mStartTimes; variable