Searched refs:crashHistory (Results 1 – 1 of 1) sorted by relevance
1052 private void writeTimeoutHistory(Iterable<String> crashHistory) { in writeTimeoutHistory() argument1053 String data = String.join(",", crashHistory); in writeTimeoutHistory()1118 ArrayList<String> crashHistory = new ArrayList<String>(Arrays.asList(Arrays.copyOfRange( in isCrashLoopFound() local1123 crashHistory.add(String.valueOf(nowMs)); in isCrashLoopFound()1124 writeTimeoutHistory(crashHistory); in isCrashLoopFound()1133 firstCrashMs = Long.parseLong(crashHistory.get(0)); in isCrashLoopFound()1135 Slog.w(TAG, "Failed to parseLong " + crashHistory.get(0), t); in isCrashLoopFound()1139 return crashHistory.size() >= fatalCount && nowMs - firstCrashMs < fatalWindowMs; in isCrashLoopFound()