Home
last modified time | relevance | path

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

/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DTestCallScreeningService.java44 Intent errorIntent = new Intent(this, CallScreeningActivity.class); in onScreenCall() local
45 errorIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onScreenCall()
46 startActivity(errorIntent); in onScreenCall()
/packages/services/Telecomm/src/com/android/server/telecom/
DCallIntentProcessor.java275 final Intent errorIntent = new Intent(context, ErrorDialogActivity.class); in disconnectCallAndShowErrorDialog() local
284 errorIntent.putExtra(ErrorDialogActivity.ERROR_MESSAGE_ID_EXTRA, errorMessageId); in disconnectCallAndShowErrorDialog()
285 errorIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in disconnectCallAndShowErrorDialog()
286 context.startActivityAsUser(errorIntent, UserHandle.CURRENT); in disconnectCallAndShowErrorDialog()
DCallsManager.java3945 Intent errorIntent = new Intent(mContext, ErrorDialogActivity.class);
3946 errorIntent.putExtra(ErrorDialogActivity.ERROR_MESSAGE_STRING_EXTRA,
3948 errorIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3949 mContext.startActivityAsUser(errorIntent, UserHandle.CURRENT);
4580 final Intent errorIntent = new Intent(mContext, ErrorDialogActivity.class);
4581 errorIntent.putExtra(ErrorDialogActivity.ERROR_MESSAGE_ID_EXTRA, messageId);
4582 errorIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
4583 mContext.startActivityAsUser(errorIntent, UserHandle.CURRENT);