Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DWindowOrientationListener.java614 private long[] mTiltHistoryTimestampNanos = new long[TILT_HISTORY_SIZE]; field in WindowOrientationListener.AccelSensorJudge
1021 mTiltHistoryTimestampNanos[0] = Long.MIN_VALUE; in clearTiltHistoryLocked()
1027 mTiltHistoryTimestampNanos[mTiltHistoryIndex] = now; in addTiltHistoryEntryLocked()
1029 mTiltHistoryTimestampNanos[mTiltHistoryIndex] = Long.MIN_VALUE; in addTiltHistoryEntryLocked()
1037 if (mTiltHistoryTimestampNanos[i] + FLAT_TIME_NANOS <= now) { in isFlatLocked()
1047 if (mTiltHistoryTimestampNanos[i] + SWING_TIME_NANOS < now) { in isSwingingLocked()
1060 return mTiltHistoryTimestampNanos[index] != Long.MIN_VALUE ? index : -1; in nextTiltHistoryIndexLocked()