Home
last modified time | relevance | path

Searched refs:phoneAccountHandle (Results 1 – 25 of 127) sorted by relevance

123456

/packages/services/Telephony/src/com/android/phone/vvm/
DVvmSimStateTracker.java76 public ServiceStateListener(Context context, PhoneAccountHandle phoneAccountHandle) { in ServiceStateListener() argument
78 mPhoneAccountHandle = phoneAccountHandle; in ServiceStateListener()
142 PhoneAccountHandle phoneAccountHandle = in onReceive() local
145 if ("null".equals(phoneAccountHandle.getId())) { in onReceive()
151 onCarrierConfigChanged(context, phoneAccountHandle); in onReceive()
156 for (PhoneAccountHandle phoneAccountHandle : sPreBootHandles) { in onBootCompleted()
157 TelephonyManager telephonyManager = getTelephonyManager(context, phoneAccountHandle); in onBootCompleted()
162 sListeners.put(phoneAccountHandle, null); in onBootCompleted()
163 sendConnected(context, phoneAccountHandle); in onBootCompleted()
165 listenToAccount(context, phoneAccountHandle); in onBootCompleted()
[all …]
/packages/apps/Dialer/java/com/android/voicemail/impl/
DVoicemailClientImpl.java80 public boolean hasCarrierSupport(Context context, PhoneAccountHandle phoneAccountHandle) { in hasCarrierSupport() argument
81 OmtpVvmCarrierConfigHelper config = new OmtpVvmCarrierConfigHelper(context, phoneAccountHandle); in hasCarrierSupport()
86 public boolean isVoicemailEnabled(Context context, PhoneAccountHandle phoneAccountHandle) { in isVoicemailEnabled() argument
87 return VisualVoicemailSettingsUtil.isEnabled(context, phoneAccountHandle); in isVoicemailEnabled()
92 Context context, PhoneAccountHandle phoneAccountHandle, boolean enabled) { in setVoicemailEnabled() argument
93 VisualVoicemailSettingsUtil.setEnabled(context, phoneAccountHandle, enabled); in setVoicemailEnabled()
97 public boolean isVoicemailArchiveEnabled(Context context, PhoneAccountHandle phoneAccountHandle) { in isVoicemailArchiveEnabled() argument
98 return VisualVoicemailSettingsUtil.isArchiveEnabled(context, phoneAccountHandle); in isVoicemailArchiveEnabled()
123 Context context, PhoneAccountHandle phoneAccountHandle, boolean value) { in setVoicemailArchiveEnabled() argument
124 VisualVoicemailSettingsUtil.setArchiveEnabled(context, phoneAccountHandle, value); in setVoicemailArchiveEnabled()
[all …]
DActivationTask.java91 Context context, PhoneAccountHandle phoneAccountHandle, @Nullable Bundle messageData) { in start() argument
97 DeviceProvisionedJobService.activateAfterProvisioned(context, phoneAccountHandle); in start()
101 Intent intent = BaseTask.createIntent(context, ActivationTask.class, phoneAccountHandle); in start()
129 PhoneAccountHandle phoneAccountHandle = getPhoneAccountHandle(); in onExecuteInBackgroundThread() local
130 if (phoneAccountHandle == null) { in onExecuteInBackgroundThread()
136 PreOMigrationHandler.migrate(getContext(), phoneAccountHandle); in onExecuteInBackgroundThread() local
142 helper = new OmtpVvmCarrierConfigHelper(getContext(), phoneAccountHandle); in onExecuteInBackgroundThread()
145 VvmLog.i(TAG, "VVM not supported on phoneAccountHandle " + phoneAccountHandle); in onExecuteInBackgroundThread()
146 VvmAccountManager.removeAccount(getContext(), phoneAccountHandle); in onExecuteInBackgroundThread() local
150 if (!VisualVoicemailSettingsUtil.isEnabled(getContext(), phoneAccountHandle)) { in onExecuteInBackgroundThread()
[all …]
DVoicemailStatus.java36 @Nullable private final PhoneAccountHandle phoneAccountHandle; field in VoicemailStatus.Editor
40 private Editor(Context context, PhoneAccountHandle phoneAccountHandle) { in Editor() argument
42 this.phoneAccountHandle = phoneAccountHandle; in Editor()
43 if (this.phoneAccountHandle == null) { in Editor()
53 return phoneAccountHandle; in getPhoneAccountHandle()
93 if (phoneAccountHandle == null) { in apply()
98 phoneAccountHandle.getComponentName().flattenToString()); in apply()
99 values.put(Status.PHONE_ACCOUNT_ID, phoneAccountHandle.getId()); in apply()
126 private DeferredEditor(Context context, PhoneAccountHandle phoneAccountHandle) { in DeferredEditor() argument
127 super(context, phoneAccountHandle); in DeferredEditor()
[all …]
DPinChangerImpl.java38 private final PhoneAccountHandle phoneAccountHandle; field in PinChangerImpl
42 PinChangerImpl(Context context, PhoneAccountHandle phoneAccountHandle) { in PinChangerImpl() argument
44 this.phoneAccountHandle = phoneAccountHandle; in PinChangerImpl()
52 OmtpVvmCarrierConfigHelper config = new OmtpVvmCarrierConfigHelper(context, phoneAccountHandle); in changePin()
53 VoicemailStatus.Editor status = VoicemailStatus.edit(context, phoneAccountHandle); in changePin()
55 VvmNetworkRequest.getNetwork(config, phoneAccountHandle, status)) { in changePin() argument
57 try (ImapHelper helper = new ImapHelper(context, phoneAccountHandle, network, status)) { in changePin() argument
72 new VisualVoicemailPreferences(context, phoneAccountHandle) in setScrambledPin()
77 new OmtpVvmCarrierConfigHelper(context, phoneAccountHandle) in setScrambledPin()
79 VoicemailStatus.edit(context, phoneAccountHandle), OmtpEvents.CONFIG_PIN_SET); in setScrambledPin()
[all …]
DOmtpService.java52 VisualVoicemailTask task, final PhoneAccountHandle phoneAccountHandle) { in onCellServiceConnected() argument
66 if (!isServiceEnabled(phoneAccountHandle)) { in onCellServiceConnected()
67 disableFilter(phoneAccountHandle); in onCellServiceConnected()
73 ActivationTask.start(OmtpService.this, phoneAccountHandle, null); in onCellServiceConnected()
110 final VisualVoicemailTask task, final PhoneAccountHandle phoneAccountHandle) { in onSimRemoved() argument
131 VvmAccountManager.removeAccount(this, phoneAccountHandle); in onSimRemoved()
171 private boolean isServiceEnabled(PhoneAccountHandle phoneAccountHandle) { in isServiceEnabled() argument
172 OmtpVvmCarrierConfigHelper config = new OmtpVvmCarrierConfigHelper(this, phoneAccountHandle); in isServiceEnabled()
174 VvmLog.i(TAG, "VVM not supported on " + phoneAccountHandle); in isServiceEnabled()
177 if (!VisualVoicemailSettingsUtil.isEnabled(this, phoneAccountHandle) in isServiceEnabled()
[all …]
DPreOMigrationHandler.java56 public static void migrate(Context context, PhoneAccountHandle phoneAccountHandle) { in migrate() argument
59 new VisualVoicemailPreferences(context, phoneAccountHandle); in migrate()
61 VvmLog.i("PreOMigrationHandler", phoneAccountHandle + " already migrated"); in migrate()
64 VvmLog.i("PreOMigrationHandler", "migrating " + phoneAccountHandle); in migrate()
65 migrateSettings(context, phoneAccountHandle); in migrate()
70 private static void migrateSettings(Context context, PhoneAccountHandle phoneAccountHandle) { in migrateSettings() argument
75 .createForPhoneAccountHandle(phoneAccountHandle); in migrateSettings()
92 VisualVoicemailSettingsUtil.setEnabled(context, phoneAccountHandle, enabled); in migrateSettings()
101 .createPinChanger(context, phoneAccountHandle) in migrateSettings()
DOmtpVvmCarrierConfigHelper.java104 private PhoneAccountHandle phoneAccountHandle; field in OmtpVvmCarrierConfigHelper
108 phoneAccountHandle = handle; in OmtpVvmCarrierConfigHelper()
118 .createForPhoneAccountHandle(phoneAccountHandle); in OmtpVvmCarrierConfigHelper()
148 @Nullable PhoneAccountHandle phoneAccountHandle) { in OmtpVvmCarrierConfigHelper() argument
152 this.phoneAccountHandle = phoneAccountHandle; in OmtpVvmCarrierConfigHelper()
176 return phoneAccountHandle; in getPhoneAccountHandle()
352 PhoneAccountHandle phoneAccountHandle = getPhoneAccountHandle(); in startActivation() local
353 if (phoneAccountHandle == null) { in startActivation()
360 VvmLog.e(TAG, "startActivation : invalid config for account " + phoneAccountHandle); in startActivation()
364 ActivationTask.start(context, this.phoneAccountHandle, null); in startActivation()
[all …]
/packages/apps/Dialer/java/com/android/dialer/voicemail/settings/
DVoicemailSettingsFragment.java71 @Nullable private PhoneAccountHandle phoneAccountHandle; field in VoicemailSettingsFragment
88 phoneAccountHandle = in onCreate()
115 if (!voicemailClient.hasCarrierSupport(getContext(), phoneAccountHandle)) { in setupVisualVoicemailPreferences()
128 if (!voicemailClient.isVoicemailEnabled(getContext(), phoneAccountHandle) in setupVisualVoicemailFeaturePreferences()
129 || !voicemailClient.isActivated(getContext(), phoneAccountHandle)) { in setupVisualVoicemailFeaturePreferences()
141 .isVoicemailTranscriptionAvailable(getContext(), phoneAccountHandle)) { in updateTranscriptionPreferences()
153 voicemailClient.isVoicemailTranscriptionEnabled(getContext(), phoneAccountHandle)); in showTranscriptionEnabledPreference() local
175 .isVoicemailDonationAvailable(getContext(), phoneAccountHandle)) { in updateTranscriptionDonationPreference()
185 voicemailClient.isVoicemailDonationEnabled(getContext(), phoneAccountHandle)); in showTranscriptionDonationEnabledPreferences() local
218 voicemailClient.isVoicemailArchiveEnabled(getContext(), phoneAccountHandle)); in setupAutoArchivePreference() local
[all …]
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DTelecomSystemTest.java578 protected IdPair outgoingCallPhoneAccountSelected(PhoneAccountHandle phoneAccountHandle, in outgoingCallPhoneAccountSelected() argument
583 phoneAccountHandle, connectionServiceFixture); in outgoingCallPhoneAccountSelected()
598 protected IdPair startOutgoingPhoneCall(String number, PhoneAccountHandle phoneAccountHandle, in startOutgoingPhoneCall() argument
602 return startOutgoingPhoneCall(number, phoneAccountHandle, connectionServiceFixture, in startOutgoingPhoneCall()
606 protected IdPair startOutgoingPhoneCall(String number, PhoneAccountHandle phoneAccountHandle, in startOutgoingPhoneCall() argument
612 startOutgoingPhoneCallPendingCreateConnection(number, phoneAccountHandle, in startOutgoingPhoneCall()
619 phoneAccountHandle, connectionServiceFixture); in startOutgoingPhoneCall()
622 protected IdPair triggerEmergencyRedial(PhoneAccountHandle phoneAccountHandle, in triggerEmergencyRedial() argument
639 phoneAccountHandle, connectionServiceFixture); in triggerEmergencyRedial()
643 PhoneAccountHandle phoneAccountHandle, in startOutgoingEmergencyCall() argument
[all …]
/packages/apps/Dialer/java/com/android/voicemail/
DVoicemailClient.java68 boolean hasCarrierSupport(Context context, PhoneAccountHandle phoneAccountHandle); in hasCarrierSupport() argument
76 boolean isVoicemailEnabled(Context context, PhoneAccountHandle phoneAccountHandle); in isVoicemailEnabled() argument
83 void setVoicemailEnabled(Context context, PhoneAccountHandle phoneAccountHandle, boolean enabled); in setVoicemailEnabled() argument
108 boolean isVoicemailArchiveEnabled(Context context, PhoneAccountHandle phoneAccountHandle); in isVoicemailArchiveEnabled() argument
118 Context context, PhoneAccountHandle phoneAccountHandle, boolean value); in setVoicemailArchiveEnabled() argument
137 Context context, PhoneAccountHandle phoneAccountHandle, boolean enabled); in setVoicemailTranscriptionEnabled() argument
140 Context context, PhoneAccountHandle phoneAccountHandle, boolean enabled); in setVoicemailDonationEnabled() argument
148 boolean isActivated(Context context, PhoneAccountHandle phoneAccountHandle); in isActivated() argument
159 @NonNull Context context, @Nullable PhoneAccountHandle phoneAccountHandle); in getConfig() argument
174 PinChanger createPinChanger(Context context, PhoneAccountHandle phoneAccountHandle); in createPinChanger() argument
[all …]
/packages/services/Telephony/src/com/android/services/telephony/
DHoldTracker.java41 public void addHoldable(PhoneAccountHandle phoneAccountHandle, Holdable holdable) { in addHoldable() argument
42 if (!mHoldables.containsKey(phoneAccountHandle)) { in addHoldable()
43 mHoldables.put(phoneAccountHandle, new ArrayList<>(1)); in addHoldable()
45 List<Holdable> holdables = mHoldables.get(phoneAccountHandle); in addHoldable()
48 updateHoldCapability(phoneAccountHandle); in addHoldable()
56 public void removeHoldable(PhoneAccountHandle phoneAccountHandle, Holdable holdable) { in removeHoldable() argument
57 if (!mHoldables.containsKey(phoneAccountHandle)) { in removeHoldable()
61 if (mHoldables.get(phoneAccountHandle).remove(holdable)) { in removeHoldable()
62 updateHoldCapability(phoneAccountHandle); in removeHoldable()
69 public void updateHoldCapability(PhoneAccountHandle phoneAccountHandle) { in updateHoldCapability() argument
[all …]
/packages/apps/Dialer/java/com/android/voicemail/impl/sync/
DVvmAccountManager.java59 Context context, PhoneAccountHandle phoneAccountHandle, StatusMessage statusMessage) { in addAccount() argument
61 new VisualVoicemailPreferences(context, phoneAccountHandle); in addAccount()
63 setAccountActivated(context, phoneAccountHandle, true); in addAccount()
68 listener.onActivationStateChanged(phoneAccountHandle, true); in addAccount()
101 for (PhoneAccountHandle phoneAccountHandle : in getActiveAccounts()
103 if (isAccountActivated(context, phoneAccountHandle)) { in getActiveAccounts()
104 results.add(phoneAccountHandle); in getActiveAccounts()
129 PhoneAccountHandle phoneAccountHandle) { in migrateActivationState() argument
138 new VisualVoicemailPreferences(context, phoneAccountHandle); in migrateActivationState()
149 Context context, PhoneAccountHandle phoneAccountHandle, boolean activated) { in setAccountActivated() argument
[all …]
DUploadTask.java45 public static void start(Context context, PhoneAccountHandle phoneAccountHandle) { in start() argument
46 Intent intent = BaseTask.createIntent(context, UploadTask.class, phoneAccountHandle); in start()
59 PhoneAccountHandle phoneAccountHandle = getPhoneAccountHandle(); in onExecuteInBackgroundThread() local
60 if (phoneAccountHandle == null) { in onExecuteInBackgroundThread()
66 this, phoneAccountHandle, null, VoicemailStatus.edit(getContext(), phoneAccountHandle)); in onExecuteInBackgroundThread()
/packages/apps/Dialer/java/com/android/voicemail/stub/
DStubVoicemailClient.java43 public boolean isVoicemailEnabled(Context context, PhoneAccountHandle phoneAccountHandle) { in isVoicemailEnabled() argument
49 Context context, PhoneAccountHandle phoneAccountHandle, boolean enabled) {} in setVoicemailEnabled() argument
60 public boolean isVoicemailArchiveEnabled(Context context, PhoneAccountHandle phoneAccountHandle) { in isVoicemailArchiveEnabled() argument
71 Context context, PhoneAccountHandle phoneAccountHandle, boolean value) {} in setVoicemailArchiveEnabled() argument
75 Context context, PhoneAccountHandle phoneAccountHandle) { in isVoicemailTranscriptionAvailable() argument
96 Context context, PhoneAccountHandle phoneAccountHandle, boolean enabled) {} in setVoicemailTranscriptionEnabled() argument
100 Context context, PhoneAccountHandle phoneAccountHandle, boolean enabled) {} in setVoicemailDonationEnabled() argument
103 public boolean isActivated(Context context, PhoneAccountHandle phoneAccountHandle) { in isActivated() argument
112 @NonNull Context context, @Nullable PhoneAccountHandle phoneAccountHandle) { in getConfig() argument
133 public boolean hasCarrierSupport(Context context, PhoneAccountHandle phoneAccountHandle) { in hasCarrierSupport() argument
[all …]
/packages/apps/Dialer/java/com/android/dialer/preferredsim/
DPreferredAccountRecorder.java56 if (suggestion.phoneAccountHandle.equals(selectedAccountHandle)) { in record()
87 private final PhoneAccountHandle phoneAccountHandle; field in PreferredAccountRecorder.UserSelectionReporter
91 @NonNull PhoneAccountHandle phoneAccountHandle, @Nullable String number, boolean remember) { in UserSelectionReporter()
92 this.phoneAccountHandle = Assert.isNotNull(phoneAccountHandle); in UserSelectionReporter()
102 .reportUserSelection(context, number, phoneAccountHandle, remember); in doInBackground()
110 private final PhoneAccountHandle phoneAccountHandle; field in PreferredAccountRecorder.WritePreferredAccountWorkerInput
115 @NonNull PhoneAccountHandle phoneAccountHandle) { in WritePreferredAccountWorkerInput() argument
118 this.phoneAccountHandle = Assert.isNotNull(phoneAccountHandle); in WritePreferredAccountWorkerInput()
132 input.phoneAccountHandle.getComponentName().flattenToString()); in doInBackground()
133 values.put(PreferredSim.PREFERRED_PHONE_ACCOUNT_ID, input.phoneAccountHandle.getId()); in doInBackground()
DPreferredAccountUtil.java59 PhoneAccountHandle phoneAccountHandle = new PhoneAccountHandle(componentName, idString); in getValidPhoneAccount() local
61 if (isPhoneAccountValid(context, phoneAccountHandle)) { in getValidPhoneAccount()
62 return Optional.of(phoneAccountHandle); in getValidPhoneAccount()
68 Context context, PhoneAccountHandle phoneAccountHandle) { in isPhoneAccountValid() argument
72 .createForPhoneAccountHandle(phoneAccountHandle) in isPhoneAccountValid()
77 context.getSystemService(TelecomManager.class).getPhoneAccount(phoneAccountHandle); in isPhoneAccountValid()
89 if (phoneAccountHandle.getId().startsWith(info.getIccId())) { in isPhoneAccountValid()
/packages/apps/Dialer/java/com/android/voicemail/impl/protocol/
DVvm3Protocol.java114 PhoneAccountHandle phoneAccountHandle, in startProvisioning() argument
135 new Vvm3Subscriber(task, phoneAccountHandle, config, status, data).subscribe(); in startProvisioning()
143 new VisualVoicemailPreferences(config.getContext(), phoneAccountHandle); in startProvisioning()
146 startProvisionNewUser(task, phoneAccountHandle, config, status, message); in startProvisioning()
149 VisualVoicemailSettingsUtil.setEnabled(config.getContext(), phoneAccountHandle, false); in startProvisioning() local
159 PhoneAccountHandle phoneAccountHandle, in createMessageSender() argument
162 return new Vvm3MessageSender(context, phoneAccountHandle, applicationPort, destinationNumber); in createMessageSender()
216 PhoneAccountHandle phoneAccountHandle, in startProvisionNewUser() argument
221 VvmNetworkRequest.getNetwork(config, phoneAccountHandle, status)) { in startProvisionNewUser() argument
226 new ImapHelper(config.getContext(), phoneAccountHandle, network, status)) { in startProvisionNewUser() argument
[all …]
/packages/apps/Dialer/java/com/android/dialer/app/voicemail/
DLegacyVoicemailNotificationReceiver.java72 PhoneAccountHandle phoneAccountHandle = in onReceive() local
78 PerAccountSharedPreferences preferences = getSharedPreferences(context, phoneAccountHandle); in onReceive()
87 setDismissed(context, phoneAccountHandle, false); in onReceive()
99 LegacyVoicemailNotifier.cancelNotification(context, phoneAccountHandle); in onReceive()
107 .isActivated(context, phoneAccountHandle)) { in onReceive()
123 phoneAccountHandle, in onReceive()
132 Context context, PhoneAccountHandle phoneAccountHandle, boolean dismissed) { in setDismissed() argument
133 getSharedPreferences(context, phoneAccountHandle) in setDismissed()
141 Context context, PhoneAccountHandle phoneAccountHandle) { in getSharedPreferences() argument
143 context, phoneAccountHandle, StorageComponent.get(context).unencryptedSharedPrefs()); in getSharedPreferences()
/packages/services/Telecomm/src/com/android/server/telecom/
DCallIntentProcessor.java116 PhoneAccountHandle phoneAccountHandle = intent.getParcelableExtra( in processOutgoingCallIntent() local
143 if (!callsManager.isSelfManaged(phoneAccountHandle, in processOutgoingCallIntent()
162 .startOutgoingCall(handle, phoneAccountHandle, clientExtras, initiatingUser, in processOutgoingCallIntent()
228 PhoneAccountHandle phoneAccountHandle = intent.getParcelableExtra( in processIncomingCallIntent() local
231 if (phoneAccountHandle == null) { in processIncomingCallIntent()
236 if (phoneAccountHandle.getComponentName() == null) { in processIncomingCallIntent()
252 phoneAccountHandle.getComponentName()); in processIncomingCallIntent()
253 callsManager.processIncomingCallIntent(phoneAccountHandle, clientExtras); in processIncomingCallIntent()
257 PhoneAccountHandle phoneAccountHandle = intent.getParcelableExtra( in processUnknownCallIntent() local
260 if (phoneAccountHandle == null) { in processUnknownCallIntent()
[all …]
DTelecomServiceImpl.java1066 public void addNewIncomingCall(PhoneAccountHandle phoneAccountHandle, Bundle extras) {
1071 phoneAccountHandle);
1072 if (phoneAccountHandle != null &&
1073 phoneAccountHandle.getComponentName() != null) {
1074 if (isCallerSimCallManager(phoneAccountHandle)
1076 phoneAccountHandle.getComponentName())) {
1082 phoneAccountHandle.getComponentName().getPackageName());
1084 enforceUserHandleMatchesCaller(phoneAccountHandle);
1085 enforcePhoneAccountIsRegisteredEnabled(phoneAccountHandle,
1087 if (isSelfManagedConnectionService(phoneAccountHandle)) {
[all …]
DCallsManager.java1043 void processIncomingCallIntent(PhoneAccountHandle phoneAccountHandle, Bundle extras) { in processIncomingCallIntent() argument
1061 phoneAccountHandle, in processIncomingCallIntent()
1072 phoneAccountHandle); in processIncomingCallIntent()
1132 isHandoverToPhoneAccountSupported(phoneAccountHandle)) { in processIncomingCallIntent()
1175 notifyCreateConnectionFailed(phoneAccountHandle, call); in processIncomingCallIntent()
1181 void addNewUnknownCall(PhoneAccountHandle phoneAccountHandle, Bundle extras) { in addNewUnknownCall() argument
1194 phoneAccountHandle, in addNewUnknownCall()
1353 PhoneAccountHandle phoneAccountHandle; in startOutgoingCall()
1355 phoneAccountHandle = potentialPhoneAccounts.get(0); in startOutgoingCall()
1357 phoneAccountHandle = null; in startOutgoingCall()
[all …]
/packages/apps/Dialer/java/com/android/dialer/preferredsim/suggestion/
DSuggestionProvider.java52 @NonNull public final PhoneAccountHandle phoneAccountHandle; field in SuggestionProvider.Suggestion
57 @NonNull PhoneAccountHandle phoneAccountHandle, in Suggestion()
60 this.phoneAccountHandle = Assert.isNotNull(phoneAccountHandle); in Suggestion()
74 @NonNull PhoneAccountHandle phoneAccountHandle, in reportUserSelection() argument
85 Context context, PhoneAccountHandle phoneAccountHandle, @Nullable Suggestion suggestion) { in getHint() argument
89 if (!phoneAccountHandle.equals(suggestion.phoneAccountHandle)) { in getHint()
/packages/apps/Dialer/java/com/android/voicemail/impl/scheduling/
DTask.java65 public final PhoneAccountHandle phoneAccountHandle; field in Task.TaskId
67 public TaskId(int id, PhoneAccountHandle phoneAccountHandle) { in TaskId() argument
69 this.phoneAccountHandle = phoneAccountHandle; in TaskId()
78 return id == other.id && phoneAccountHandle.equals(other.phoneAccountHandle); in equals()
83 return Objects.hash(id, phoneAccountHandle); in hashCode()
/packages/apps/Dialer/java/com/android/dialer/callintent/
DCallIntentBuilder.java44 @Nullable private PhoneAccountHandle phoneAccountHandle; field in CallIntentBuilder
111 phoneAccountHandle = parcel.readParcelable(classLoader); in CallIntentBuilder()
120 @Nullable PhoneAccountHandle phoneAccountHandle, CallInitiationType.Type callInitiationType) { in forVoicemail()
123 .setPhoneAccountHandle(phoneAccountHandle); in forVoicemail()
139 this.phoneAccountHandle = accountHandle; in setPhoneAccountHandle()
145 return phoneAccountHandle; in getPhoneAccountHandle()
216 if (phoneAccountHandle != null) { in build()
217 intent.putExtra(TelecomManager.EXTRA_PHONE_ACCOUNT_HANDLE, phoneAccountHandle); in build()
279 dest.writeParcelable(phoneAccountHandle, flags); in writeToParcel()

123456