Home
last modified time | relevance | path

Searched refs:ErrorDialogActivity (Results 1 – 6 of 6) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
DUserUtil.java30 import com.android.server.telecom.components.ErrorDialogActivity;
72 final Intent intent = new Intent(context, ErrorDialogActivity.class); in showErrorDialogForRestrictedOutgoingCall()
74 intent.putExtra(ErrorDialogActivity.ERROR_MESSAGE_ID_EXTRA, stringId); in showErrorDialogForRestrictedOutgoingCall()
DCallIntentProcessor.java6 import com.android.server.telecom.components.ErrorDialogActivity;
318 final Intent errorIntent = new Intent(context, ErrorDialogActivity.class); in showErrorDialog()
327 errorIntent.putExtra(ErrorDialogActivity.ERROR_MESSAGE_ID_EXTRA, errorMessageId); in showErrorDialog()
DCallsManager.java135 import com.android.server.telecom.components.ErrorDialogActivity;
6055 Intent errorIntent = new Intent(mContext, ErrorDialogActivity.class);
6056 errorIntent.putExtra(ErrorDialogActivity.ERROR_MESSAGE_STRING_EXTRA,
6727 final Intent errorIntent = new Intent(mContext, ErrorDialogActivity.class);
6728 errorIntent.putExtra(ErrorDialogActivity.ERROR_MESSAGE_ID_EXTRA, messageId);
/packages/services/Telecomm/src/com/android/server/telecom/components/
DErrorDialogActivity.java33 public class ErrorDialogActivity extends Activity { class
34 private static final String TAG = ErrorDialogActivity.class.getSimpleName();
/packages/services/Telephony/src/com/android/phone/
DErrorDialogActivity.java37 public class ErrorDialogActivity extends Activity { class
39 private static final String TAG = ErrorDialogActivity.class.getSimpleName();
DPhoneInterfaceManager.java10987 intent.setClass(mApp, ErrorDialogActivity.class); in showSwitchToManagedProfileDialog()