Searched refs:errorIntent (Results 1 – 3 of 3) sorted by relevance
/packages/modules/HealthFitness/tests/cts/utils/HealthConnectTestUtils/src/android/healthconnect/cts/utils/ |
D | ProxyActivity.java | 137 Intent errorIntent = new Intent(); in finishWithException() local 138 errorIntent.putExtra(PROXY_ACTIVITY_ERROR, e); in finishWithException() 139 setResult(RESULT_CANCELED, errorIntent); in finishWithException()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | CallIntentProcessor.java | 318 final Intent errorIntent = new Intent(context, ErrorDialogActivity.class); in showErrorDialog() local 327 errorIntent.putExtra(ErrorDialogActivity.ERROR_MESSAGE_ID_EXTRA, errorMessageId); in showErrorDialog() 328 errorIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in showErrorDialog() 329 context.startActivityAsUser(errorIntent, UserHandle.CURRENT); in showErrorDialog()
|
D | CallsManager.java | 6055 Intent errorIntent = new Intent(mContext, ErrorDialogActivity.class); 6056 errorIntent.putExtra(ErrorDialogActivity.ERROR_MESSAGE_STRING_EXTRA, 6058 errorIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 6059 mContext.startActivityAsUser(errorIntent, UserHandle.CURRENT); 6727 final Intent errorIntent = new Intent(mContext, ErrorDialogActivity.class); 6728 errorIntent.putExtra(ErrorDialogActivity.ERROR_MESSAGE_ID_EXTRA, messageId); 6729 errorIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 6730 mContext.startActivityAsUser(errorIntent, UserHandle.CURRENT);
|