Searched refs:mLastDumpTime (Results 1 – 2 of 2) sorted by relevance
101 private final SparseLongArray mLastDumpTime = new SparseLongArray(); field in WifiDiagnostics268 pw.println("Last Flush Time: " + mLastDumpTime.toString()); in dump()549 int index = mLastDumpTime.indexOfKey(errorCode); in flushDump()551 if (currentTime - mLastDumpTime.valueAt(index) < MIN_DUMP_TIME_WINDOW_MILLIS) { in flushDump()559 mLastDumpTime.put(errorCode, currentTime); in flushDump()
425 if (now - mLastDumpTime > 1000000000) { in doFrame()428 mLastDumpTime = now - (now % 1000000000); in doFrame()478 private long mLastDumpTime; field in OrbitActivity