Home
last modified time | relevance | path

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

/packages/apps/Dialer/src/com/android/dialer/voicemail/
DVoicemailPlaybackPresenter.java595 @GuardedBy("mLock") private ScheduledFuture<?> mScheduledFuture; field in VoicemailPlaybackPresenter.PositionUpdater
601 if (mScheduledFuture == null) {
623 if (mScheduledFuture != null) { in startUpdating()
624 mScheduledFuture.cancel(false); in startUpdating()
625 mScheduledFuture = null; in startUpdating()
627 mScheduledFuture = mExecutorService.scheduleAtFixedRate(this, 0, mPeriodMillis, in startUpdating()
634 if (mScheduledFuture != null) { in stopUpdating()
635 mScheduledFuture.cancel(false); in stopUpdating()
636 mScheduledFuture = null; in stopUpdating()