Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/am/
H A DServiceRecord.java131 long restartDelay; // delay until next restart attempt. field in ServiceRecord
377 if (crashCount != 0 || restartCount != 0 || restartDelay != 0 || nextRestartTime != 0) { in dumpDebug()
380 ProtoUtils.toDuration(proto, ServiceRecordProto.Crash.RESTART_DELAY, restartDelay, now); in dumpDebug()
508 || restartDelay != 0 || nextRestartTime != 0) { in dump()
511 TimeUtils.formatDuration(restartDelay, now, pw); in dump()
901 restartDelay = 0; in resetRestartCounter()
H A DActiveServices.java3534 if (r.restartDelay == 0) { in scheduleServiceRestartLocked()
3536 r.restartDelay = minDuration; in scheduleServiceRestartLocked()
3548 r.restartDelay = minDuration; in scheduleServiceRestartLocked()
3551 if (r.restartDelay < minDuration) { in scheduleServiceRestartLocked()
3552 r.restartDelay = minDuration; in scheduleServiceRestartLocked()
3558 r.nextRestartTime = now + r.restartDelay; in scheduleServiceRestartLocked()
3581 r.nextRestartTime = now + r.restartDelay; in scheduleServiceRestartLocked()
3589 r.restartDelay = 0; in scheduleServiceRestartLocked()
3615 r.nextRestartTime = now + r.restartDelay; in performScheduleRestartLocked()
3619 r.userId, r.shortInstanceName, r.restartDelay); in performScheduleRestartLocked()
[all …]