Lines Matching refs:nowUs
3781 long nowUs; in notifyTimedEvent() local
3783 nowUs = getCurrentTimeUs(refreshTime, true); in notifyTimedEvent()
3788 nowUs = getCurrentTimeUs(refreshTime, true); in notifyTimedEvent()
3790 long nextTimeUs = nowUs; in notifyTimedEvent()
3800 .append(nowUs).append(") from {"); in notifyTimedEvent()
3822 } else if (mTimes[ix] <= nowUs + MAX_EARLY_CALLBACK_US) { in notifyTimedEvent()
3826 } else if (nextTimeUs == nowUs || mTimes[ix] < nextTimeUs) { in notifyTimedEvent()
3831 if (nextTimeUs > nowUs && !mPaused) { in notifyTimedEvent()
3833 if (DEBUG) Log.d(TAG, "scheduling for " + nextTimeUs + " and " + nowUs); in notifyTimedEvent()
3834 scheduleNotification(NOTIFY_TIME, nextTimeUs - nowUs); in notifyTimedEvent()
3841 listener.onTimedEvent(nowUs); in notifyTimedEvent()