Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/com/android/internal/infra/
H A DAbstractRemoteService.java422 long unbindDelay = getTimeoutIdleBindMillis(); in scheduleUnbind() local
424 if (unbindDelay <= PERMANENT_BOUND_TIMEOUT_MS) { in scheduleUnbind()
425 if (mVerbose) Slog.v(mTag, "not scheduling unbind when value is " + unbindDelay); in scheduleUnbind()
430 unbindDelay = 0; in scheduleUnbind()
437 mNextUnbind = SystemClock.elapsedRealtime() + unbindDelay; in scheduleUnbind()
438 if (mVerbose) Slog.v(mTag, "unbinding in " + unbindDelay + "ms: " + mNextUnbind); in scheduleUnbind()
440 .setWhat(MSG_UNBIND), unbindDelay); in scheduleUnbind() local