Home
last modified time | relevance | path

Searched refs:mCrashTimestampsIndices (Results 1 – 1 of 1) sorted by relevance

/packages/services/Car/service/src/com/android/car/
DCarService.java199 private final RingBufferIndices mCrashTimestampsIndices; field in CarService.CrashTracker
212 mCrashTimestampsIndices = new RingBufferIndices(mMaxCrashCountLimit); in CrashTracker()
217 mCrashTimestamps[mCrashTimestampsIndices.add()] = lastCrash; in crashDetected()
219 if (mCrashTimestampsIndices.size() == mMaxCrashCountLimit) { in crashDetected()
220 long firstCrash = mCrashTimestamps[mCrashTimestampsIndices.indexOf(0)]; in crashDetected()