Home
last modified time | relevance | path

Searched refs:mPhoneAccountHandle (Results 1 – 13 of 13) sorted by relevance

/packages/apps/Dialer/java/com/android/voicemail/impl/
DVoicemailStatus.java35 @Nullable private final PhoneAccountHandle mPhoneAccountHandle; field in VoicemailStatus.Editor
41 mPhoneAccountHandle = phoneAccountHandle; in Editor()
42 if (mPhoneAccountHandle == null) { in Editor()
52 return mPhoneAccountHandle; in getPhoneAccountHandle()
92 if (mPhoneAccountHandle == null) { in apply()
97 mPhoneAccountHandle.getComponentName().flattenToString()); in apply()
98 mValues.put(Status.PHONE_ACCOUNT_ID, mPhoneAccountHandle.getId()); in apply()
DOmtpVvmCarrierConfigHelper.java90 private PhoneAccountHandle mPhoneAccountHandle; field in OmtpVvmCarrierConfigHelper
94 mPhoneAccountHandle = handle; in OmtpVvmCarrierConfigHelper()
98 .createForPhoneAccountHandle(mPhoneAccountHandle); in OmtpVvmCarrierConfigHelper()
132 return mPhoneAccountHandle; in getPhoneAccountHandle()
321 ActivationTask.start(mContext, mPhoneAccountHandle, null); in startActivation()
379 .append(mPhoneAccountHandle) in toString()
/packages/apps/Dialer/java/com/android/voicemail/impl/settings/
DVoicemailChangePinActivity.java80 private PhoneAccountHandle mPhoneAccountHandle; field in VoicemailChangePinActivity
187 setDefaultOldPIN(activity, activity.mPhoneAccountHandle, null); in handleResult()
277 setDefaultOldPIN(activity, activity.mPhoneAccountHandle, null); in handleResult()
339 mPhoneAccountHandle = getIntent().getParcelableExtra(EXTRA_PHONE_ACCOUNT_HANDLE); in onCreate()
340 mConfig = new OmtpVvmCarrierConfigHelper(this, mPhoneAccountHandle); in onCreate()
364 if (isDefaultOldPinSet(this, mPhoneAccountHandle)) { in onCreate()
365 mOldPin = getDefaultOldPin(this, mPhoneAccountHandle); in onCreate()
379 return VoicemailStatus.edit(this, mPhoneAccountHandle); in getVoicemailStatusEditor()
385 new VisualVoicemailPreferences(this, mPhoneAccountHandle); in readPinLength()
585 mConfig, mPhoneAccountHandle, VoicemailChangePinActivity.this.getVoicemailStatusEditor()); in ChangePinNetworkRequestCallback()
[all …]
/packages/services/Telephony/src/com/android/phone/vvm/
DVvmSimStateTracker.java73 private final PhoneAccountHandle mPhoneAccountHandle; field in VvmSimStateTracker.ServiceStateListener
78 mPhoneAccountHandle = phoneAccountHandle; in ServiceStateListener()
82 TelephonyManager telephonyManager = getTelephonyManager(mContext, mPhoneAccountHandle); in listen()
84 VvmLog.e(TAG, "Cannot create TelephonyManager from " + mPhoneAccountHandle); in listen()
96 sListeners.put(mPhoneAccountHandle, null); in unlisten()
103 sendConnected(mContext, mPhoneAccountHandle); in onServiceStateChanged()
DVisualVoicemailPreferences.java39 private final PhoneAccountHandle mPhoneAccountHandle; field in VisualVoicemailPreferences
43 mPhoneAccountHandle = phoneAccountHandle; in VisualVoicemailPreferences()
144 return VISUAL_VOICEMAIL_SHARED_PREFS_KEY_PREFIX + key + "_" + mPhoneAccountHandle.getId(); in getKey()
/packages/apps/Dialer/java/com/android/voicemail/impl/scheduling/
DBaseTask.java50 private PhoneAccountHandle mPhoneAccountHandle; field in BaseTask
93 return mPhoneAccountHandle; in getPhoneAccountHandle()
132 return createIntent(getContext(), this.getClass(), mPhoneAccountHandle); in createRestartIntent()
148 return new TaskId(mId, mPhoneAccountHandle); in getId()
162 mPhoneAccountHandle = extras.getParcelable(EXTRA_PHONE_ACCOUNT_HANDLE); in onCreate()
/packages/services/Telecomm/src/com/android/server/telecom/
DMissedCallNotifier.java38 private PhoneAccountHandle mPhoneAccountHandle; field in MissedCallNotifier.CallInfo
45 mPhoneAccountHandle = phoneAccountHandle; in CallInfo()
52 mPhoneAccountHandle = call.getTargetPhoneAccount(); in CallInfo()
62 return mPhoneAccountHandle; in getPhoneAccountHandle()
/packages/apps/Dialer/java/com/android/voicemail/impl/sms/
DStatusSmsFetcher.java64 private final PhoneAccountHandle mPhoneAccountHandle; field in StatusSmsFetcher
68 mPhoneAccountHandle = phoneAccountHandle; in StatusSmsFetcher()
115 if (!mPhoneAccountHandle.equals(sms.getPhoneAccountHandle())) { in onReceive()
133 new OmtpVvmCarrierConfigHelper(context, mPhoneAccountHandle); in onReceive()
DOmtpMessageSender.java38 protected final PhoneAccountHandle mPhoneAccountHandle; field in OmtpMessageSender
48 mPhoneAccountHandle = phoneAccountHandle; in OmtpMessageSender()
79 mContext, mPhoneAccountHandle, mDestinationNumber, mApplicationPort, text, sentIntent); in sendSms()
/packages/apps/Dialer/java/com/android/contacts/common/dialog/
DCallSubjectDialog.java144 private PhoneAccountHandle mPhoneAccountHandle; field in CallSubjectDialog
153 .setPhoneAccountHandle(mPhoneAccountHandle)
360 mPhoneAccountHandle = arguments.getParcelable(ARG_PHONE_ACCOUNT_HANDLE); in readArguments()
532 if (mPhoneAccountHandle == null) { in loadConfiguration()
537 final PhoneAccount account = telecomManager.getPhoneAccount(mPhoneAccountHandle); in loadConfiguration()
/packages/apps/Dialer/java/com/android/voicemail/impl/fetch/
DVoicemailFetchedCallback.java43 private final PhoneAccountHandle mPhoneAccountHandle; field in VoicemailFetchedCallback
49 mPhoneAccountHandle = phoneAccountHandle; in VoicemailFetchedCallback()
68 .getVoiceMailNumber(mPhoneAccountHandle))); in setVoicemailContent()
/packages/apps/Contacts/src/com/android/contacts/dialog/
DCallSubjectDialog.java113 private PhoneAccountHandle mPhoneAccountHandle; field in CallSubjectDialog
163 Intent intent = CallUtil.getCallWithSubjectIntent(mNumber, mPhoneAccountHandle,
351 mPhoneAccountHandle = arguments.getParcelable(ARG_PHONE_ACCOUNT_HANDLE); in readArguments()
589 if (mPhoneAccountHandle == null) { in loadConfiguration()
595 final PhoneAccount account = telecomManager.getPhoneAccount(mPhoneAccountHandle); in loadConfiguration()
/packages/apps/Dialer/java/com/android/incallui/call/
DDialerCall.java132 private PhoneAccountHandle mPhoneAccountHandle; field in DialerCall
461 if (!Objects.equals(mPhoneAccountHandle, newPhoneAccountHandle)) { in updateFromTelecomCall()
462 mPhoneAccountHandle = newPhoneAccountHandle; in updateFromTelecomCall()
464 if (mPhoneAccountHandle != null) { in updateFromTelecomCall()
466 mContext.getSystemService(TelecomManager.class).getPhoneAccount(mPhoneAccountHandle); in updateFromTelecomCall()