Home | History | Annotate | Download | only in am

Lines Matching refs:crashInfo

11567      * @param crashInfo describing the exception
11569 public void handleApplicationCrash(IBinder app, ApplicationErrorReport.CrashInfo crashInfo) {
11574 handleApplicationCrashInner("crash", r, processName, crashInfo);
11581 ApplicationErrorReport.CrashInfo crashInfo) {
11585 crashInfo.exceptionClassName,
11586 crashInfo.exceptionMessage,
11587 crashInfo.throwFileName,
11588 crashInfo.throwLineNumber);
11590 addErrorToDropBox(eventType, r, processName, null, null, null, null, null, crashInfo);
11592 crashApplication(r, crashInfo);
11701 if (info.crashInfo != null && info.crashInfo.stackTrace != null) {
11702 sb.append(info.crashInfo.stackTrace);
11773 * @param crashInfo describing the context of the error
11777 final ApplicationErrorReport.CrashInfo crashInfo) {
11787 handleApplicationWtfInner(callingUid, callingPid, app, tag, crashInfo);
11794 crashInfo);
11799 crashApplication(r, crashInfo);
11807 final ApplicationErrorReport.CrashInfo crashInfo) {
11813 processName, r == null ? -1 : r.info.flags, tag, crashInfo.exceptionMessage);
11815 addErrorToDropBox("wtf", r, processName, null, null, tag, null, null, crashInfo);
11911 * @param crashInfo giving an application stack trace, null if absent
11917 final ApplicationErrorReport.CrashInfo crashInfo) {
11964 if (crashInfo != null && crashInfo.stackTrace != null) {
11965 sb.append(crashInfo.stackTrace);
12013 * @param crashInfo describing the failure
12015 private void crashApplication(ProcessRecord r, ApplicationErrorReport.CrashInfo crashInfo) {
12017 String shortMsg = crashInfo.exceptionClassName;
12018 String longMsg = crashInfo.exceptionMessage;
12019 String stackTrace = crashInfo.stackTrace;
12034 shortMsg, longMsg, timeMillis, crashInfo.stackTrace)) {
12036 && "Native crash".equals(crashInfo.exceptionClassName)) {
12108 appErrorIntent = createAppErrorIntentLocked(r, timeMillis, crashInfo);
12122 long timeMillis, ApplicationErrorReport.CrashInfo crashInfo) {
12123 ApplicationErrorReport report = createAppErrorReportLocked(r, timeMillis, crashInfo);
12135 long timeMillis, ApplicationErrorReport.CrashInfo crashInfo) {
12153 report.crashInfo = crashInfo;