Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/notification/
DRateEstimator.java28 private Long mLastEventTime; field in RateEstimator
39 if (mLastEventTime == null) { in update()
47 mLastEventTime = now; in update()
53 if (mLastEventTime == null) { in getRate()
61 double dt = ((double) (now - mLastEventTime)) / 1000.0; in getInterarrivalEstimate()
/frameworks/native/services/surfaceflinger/
DDispSync.cpp198 listener.mLastEventTime = systemTime() - mPeriod / 2 + mPhase - in addEventListener()
235 nsecs_t mLastEventTime; member
280 mEventListeners.editItemAt(i).mLastEventTime = t; in gatherCallbackInvocationsLocked()
293 nsecs_t lastEventTime = listener.mLastEventTime + mWakeupLatency; in computeListenerNextEventTimeLocked()
329 if (t - listener.mLastEventTime < (3 * mPeriod / 5)) { in computeListenerNextEventTimeLocked()
/frameworks/native/libs/input/
DVelocityTracker.cpp112 mLastEventTime(0), mCurrentPointerIdBits(0), mActivePointerId(-1) { in VelocityTracker()
228 && eventTime >= mLastEventTime + ASSUME_POINTER_STOPPED_TIME) { in addMovement()
231 (eventTime - mLastEventTime) * 0.000001f); in addMovement()
237 mLastEventTime = eventTime; in addMovement()
/frameworks/native/include/input/
DVelocityTracker.h107 nsecs_t mLastEventTime; variable