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.java140 Intent appErrorIntent = null;
157 appErrorIntent = mService.mAppErrors.createAppErrorIntentLocked(app,
171 if (appErrorIntent != null) {
173 getContext().startActivity(appErrorIntent);
DAppErrors.java503 Intent appErrorIntent = null; in crashApplicationInner() local
539 appErrorIntent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS); in crashApplicationInner()
540 appErrorIntent.setData(Uri.parse("package:" + r.info.packageName)); in crashApplicationInner()
541 appErrorIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in crashApplicationInner()
544 appErrorIntent = createAppErrorIntentLocked(r, timeMillis, crashInfo); in crashApplicationInner()
554 if (appErrorIntent != null) { in crashApplicationInner()
556 mContext.startActivityAsUser(appErrorIntent, new UserHandle(r.userId)); in crashApplicationInner()