Home
last modified time | relevance | path

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

/frameworks/base/services/java/com/android/server/am/
DServiceRecord.java97 long restartDelay; // delay until next restart attempt. field in ServiceRecord
240 || restartDelay != 0 || nextRestartTime != 0) { in dump()
244 TimeUtils.formatDuration(restartDelay, now, pw); in dump()
325 restartDelay = 0; in resetRestartCounter()
DActiveServices.java877 if (r.restartDelay == 0) { in scheduleServiceRestartLocked()
879 r.restartDelay = minDuration; in scheduleServiceRestartLocked()
888 r.restartDelay = minDuration; in scheduleServiceRestartLocked()
894 r.restartDelay += minDuration/2; in scheduleServiceRestartLocked()
896 r.restartDelay *= SERVICE_RESTART_DURATION_FACTOR; in scheduleServiceRestartLocked()
897 if (r.restartDelay < minDuration) { in scheduleServiceRestartLocked()
898 r.restartDelay = minDuration; in scheduleServiceRestartLocked()
904 r.nextRestartTime = now + r.restartDelay; in scheduleServiceRestartLocked()
918 r.restartDelay = r.nextRestartTime - now; in scheduleServiceRestartLocked()
930 r.restartDelay = 0; in scheduleServiceRestartLocked()
[all …]