Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/location/
DExponentialBackOff.java10 private long mCurrentIntervalMillis; field in ExponentialBackOff
16 mCurrentIntervalMillis = mInitIntervalMillis / MULTIPLIER; in ExponentialBackOff()
20 if (mCurrentIntervalMillis > mMaxIntervalMillis) { in nextBackoffMillis()
24 mCurrentIntervalMillis *= MULTIPLIER; in nextBackoffMillis()
25 return mCurrentIntervalMillis; in nextBackoffMillis()
29 mCurrentIntervalMillis = mInitIntervalMillis / MULTIPLIER; in reset()