Home
last modified time | relevance | path

Searched refs:errorIntent (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/services/Telecomm/src/com/android/server/telecom/
H A DCallIntentProcessor.java286 final Intent errorIntent = new Intent(context, ErrorDialogActivity.class); in showErrorDialog() local
295 errorIntent.putExtra(ErrorDialogActivity.ERROR_MESSAGE_ID_EXTRA, errorMessageId); in showErrorDialog()
296 errorIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in showErrorDialog()
297 context.startActivityAsUser(errorIntent, UserHandle.CURRENT); in showErrorDialog()
H A DCallsManager.java4891 Intent errorIntent = new Intent(mContext, ErrorDialogActivity.class);
4892 errorIntent.putExtra(ErrorDialogActivity.ERROR_MESSAGE_STRING_EXTRA,
4894 errorIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
4895 mContext.startActivityAsUser(errorIntent, UserHandle.CURRENT);
5482 final Intent errorIntent = new Intent(mContext, ErrorDialogActivity.class);
5483 errorIntent.putExtra(ErrorDialogActivity.ERROR_MESSAGE_ID_EXTRA, messageId);
5484 errorIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
5485 mContext.startActivityAsUser(errorIntent, UserHandle.CURRENT);
/aosp12/frameworks/base/core/java/com/android/internal/util/
H A DScreenshotHelper.java416 Intent errorIntent = new Intent(Intent.ACTION_USER_PRESENT); in notifyScreenshotError() local
417 errorIntent.setComponent(errorComponent); in notifyScreenshotError()
418 errorIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT | in notifyScreenshotError()
420 mContext.sendBroadcastAsUser(errorIntent, UserHandle.CURRENT); in notifyScreenshotError()