Searched refs:crashCount (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
H A DServiceRecord.java113 int crashCount; // number of times proc has crashed with service running field in class:ServiceRecord
301 if (crashCount != 0 || restartCount != 0 || restartDelay != 0 || nextRestartTime != 0) {
307 proto.write(ServiceRecordProto.Crash.CRASH_COUNT, crashCount);
406 if (crashCount != 0 || restartCount != 0
413 pw.print(" crashCount="); pw.println(crashCount);
H A DAppErrors.java699 sr.crashCount = 1;
701 sr.crashCount++;
705 if (sr.crashCount < mService.mConstants.BOUND_SERVICE_MAX_CRASH_RETRY
H A DActiveServices.java2161 } else if (r.crashCount > 1) {
2163 * (r.crashCount - 1);
3386 if (allowRestart && sr.crashCount >= mAm.mConstants.BOUND_SERVICE_MAX_CRASH_RETRY
3389 Slog.w(TAG, "Service crashed " + sr.crashCount
3392 sr.userId, sr.crashCount, sr.shortName, app.pid);
3468 info.crashCount = r.crashCount;
/frameworks/base/core/java/android/app/
H A DActivityManager.java2356 public int crashCount; field in class:ActivityManager.RunningServiceInfo
2429 dest.writeInt(crashCount);
2446 crashCount = source.readInt();

Completed in 81 milliseconds