Home
last modified time | relevance | path

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

/external/nist-sip/java/gov/nist/javax/sip/stack/
DSIPDialog.java187 protected transient DialogTimerTask timerTask; field in SIPDialog
1075 if (this.timerTask != null) { in ackReceived()
1076 this.timerTask.cancel(); in ackReceived()
1077 this.timerTask = null; in ackReceived()
1612 DialogTimerTask t = this.timerTask; in getInviteTransaction()
2269 if (this.timerTask != null && timerTask.transaction == transaction) { in startTimer()
2280 if (this.timerTask != null) { in startTimer()
2281 this.timerTask.transaction = transaction; in startTimer()
2283 this.timerTask = new DialogTimerTask(transaction); in startTimer()
2284 sipStack.getTimer().schedule(timerTask, SIPTransactionStack.BASE_TIMER_INTERVAL, in startTimer()
[all …]
/external/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/
DEffectsAdapter.kt31 import kotlin.concurrent.timerTask in <lambda>()
115 timer?.schedule(timerTask { updateEffectParam(fracprogress) }, 100) in <lambda>()