Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiConnectivityManagerTest.java340 long currentTimeStamp = 0; in connectionAttemptRateLimitedWhenScreenOff() local
342 currentTimeStamp += connectionAttemptIntervals; in connectionAttemptRateLimitedWhenScreenOff()
343 when(mClock.elapsedRealtime()).thenReturn(currentTimeStamp); in connectionAttemptRateLimitedWhenScreenOff()
351 when(mClock.elapsedRealtime()).thenReturn(currentTimeStamp); in connectionAttemptRateLimitedWhenScreenOff()
379 long currentTimeStamp = 0; in connectionAttemptNotRateLimitedWhenScreenOff() local
381 currentTimeStamp += connectionAttemptIntervals; in connectionAttemptNotRateLimitedWhenScreenOff()
382 when(mClock.elapsedRealtime()).thenReturn(currentTimeStamp); in connectionAttemptNotRateLimitedWhenScreenOff()
391 currentTimeStamp + connectionAttemptIntervals * 2); in connectionAttemptNotRateLimitedWhenScreenOff()
419 long currentTimeStamp = 0; in connectionAttemptNotRateLimitedWhenScreenOffAfterUserSelection() local
421 currentTimeStamp += connectionAttemptIntervals; in connectionAttemptNotRateLimitedWhenScreenOffAfterUserSelection()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiConnectivityManager.java670 long currentTimeStamp = mClock.elapsedRealtime(); in startPeriodicSingleScan() local
673 long msSinceLastScan = currentTimeStamp - mLastPeriodicSingleScanTimeStamp; in startPeriodicSingleScan()
696 mLastPeriodicSingleScanTimeStamp = currentTimeStamp; in startPeriodicSingleScan()