Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/am/
DAppNotRespondingDialog.java139 Intent appErrorIntent = null;
156 appErrorIntent = mService.mAppErrors.createAppErrorIntentLocked(app,
170 if (appErrorIntent != null) {
172 getContext().startActivity(appErrorIntent);
DAppErrors.java461 Intent appErrorIntent = null; in crashApplicationInner() local
506 appErrorIntent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS); in crashApplicationInner()
507 appErrorIntent.setData(Uri.parse("package:" + r.info.packageName)); in crashApplicationInner()
508 appErrorIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in crashApplicationInner()
511 appErrorIntent = createAppErrorIntentLocked(r, timeMillis, crashInfo); in crashApplicationInner()
521 if (appErrorIntent != null) { in crashApplicationInner()
523 mContext.startActivityAsUser(appErrorIntent, new UserHandle(r.userId)); in crashApplicationInner()