Home
last modified time | relevance | path

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

123456

/packages/services/Telephony/src/com/android/phone/vvm/
DVvmSimStateTracker.java80 public ServiceStateListener(Context context, PhoneAccountHandle phoneAccountHandle) { in ServiceStateListener() argument
82 mPhoneAccountHandle = phoneAccountHandle; in ServiceStateListener()
147 PhoneAccountHandle phoneAccountHandle = in onReceive() local
150 if ("null".equals(phoneAccountHandle.getId())) { in onReceive()
156 onCarrierConfigChanged(context, phoneAccountHandle); in onReceive()
161 for (PhoneAccountHandle phoneAccountHandle : sPreBootHandles) { in onBootCompleted()
162 TelephonyManager telephonyManager = getTelephonyManager(context, phoneAccountHandle); in onBootCompleted()
167 sListeners.put(phoneAccountHandle, null); in onBootCompleted()
168 sendConnected(context, phoneAccountHandle); in onBootCompleted()
170 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 …]
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 …]
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 …]
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 …]
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()
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 …]
/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/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/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/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/services/Telecomm/tests/src/com/android/server/telecom/tests/
DTelecomSystemTest.java686 protected IdPair outgoingCallPhoneAccountSelected(PhoneAccountHandle phoneAccountHandle, in outgoingCallPhoneAccountSelected() argument
691 phoneAccountHandle, connectionServiceFixture); in outgoingCallPhoneAccountSelected()
706 protected IdPair startOutgoingPhoneCall(String number, PhoneAccountHandle phoneAccountHandle, in startOutgoingPhoneCall() argument
710 return startOutgoingPhoneCall(number, phoneAccountHandle, connectionServiceFixture, in startOutgoingPhoneCall()
714 protected IdPair startOutgoingPhoneCall(String number, PhoneAccountHandle phoneAccountHandle, in startOutgoingPhoneCall() argument
720 startOutgoingPhoneCallPendingCreateConnection(number, phoneAccountHandle, in startOutgoingPhoneCall()
727 phoneAccountHandle, connectionServiceFixture); in startOutgoingPhoneCall()
730 protected IdPair triggerEmergencyRedial(PhoneAccountHandle phoneAccountHandle, in triggerEmergencyRedial() argument
747 phoneAccountHandle, connectionServiceFixture); in triggerEmergencyRedial()
751 PhoneAccountHandle phoneAccountHandle, in startOutgoingEmergencyCall() argument
[all …]
/packages/apps/Car/VoiceControl/src/com/android/car/
DTelecomUtils.java55 for (PhoneAccountHandle phoneAccountHandle : phoneAccountHandles) { in getHfpDeviceList()
56 BluetoothDevice bluetoothDevice = getMatchingDevice(phoneAccountHandle); in getHfpDeviceList()
69 @Nullable PhoneAccountHandle phoneAccountHandle) { in getMatchingDevice()
75 if (isHfpConnectionService(phoneAccountHandle)) { in getMatchingDevice()
77 if (TextUtils.equals(bluetoothDevice.getAddress(), phoneAccountHandle.getId())) { in getMatchingDevice()
86 public boolean isHfpConnectionService(@Nullable PhoneAccountHandle phoneAccountHandle) { in isHfpConnectionService() argument
87 return phoneAccountHandle != null in isHfpConnectionService()
89 phoneAccountHandle.getComponentName().getClassName()); in isHfpConnectionService()
/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/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/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()
DBaseTask.java52 private PhoneAccountHandle phoneAccountHandle; field in BaseTask
95 return phoneAccountHandle; in getPhoneAccountHandle()
134 return createIntent(getContext(), this.getClass(), phoneAccountHandle); in createRestartIntent()
142 Context context, Class<? extends BaseTask> task, PhoneAccountHandle phoneAccountHandle) { in createIntent() argument
144 intent.putExtra(EXTRA_PHONE_ACCOUNT_HANDLE, phoneAccountHandle); in createIntent()
150 return new TaskId(id, phoneAccountHandle); in getId()
164 phoneAccountHandle = extras.getParcelable(EXTRA_PHONE_ACCOUNT_HANDLE); in onCreate()
/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/services/Telecomm/src/com/android/server/telecom/
DTransactionalServiceRepository.java40 (PhoneAccountHandle phoneAccountHandle, ICallEventCallback callEventCallback, in addNewCallForTransactionalServiceWrapper() argument
45 if (!hasExistingServiceWrapper(phoneAccountHandle)) { in addNewCallForTransactionalServiceWrapper()
46 Log.d(TAG, "creating a new TSW; handle=[%s]", phoneAccountHandle); in addNewCallForTransactionalServiceWrapper()
48 callsManager, phoneAccountHandle, call, this); in addNewCallForTransactionalServiceWrapper()
50 Log.d(TAG, "add a new call to an existing TSW; handle=[%s]", phoneAccountHandle); in addNewCallForTransactionalServiceWrapper()
51 service = getTransactionalServiceWrapper(phoneAccountHandle); in addNewCallForTransactionalServiceWrapper()
59 mServiceLookupTable.put(phoneAccountHandle, service); in addNewCallForTransactionalServiceWrapper()
DCallIntentProcessor.java132 PhoneAccountHandle phoneAccountHandle = intent.getParcelableExtra( in processOutgoingCallIntent() local
176 if (!callsManager.isSelfManaged(phoneAccountHandle, in processOutgoingCallIntent()
204 if (!callsManager.isSelfManaged(phoneAccountHandle, initiatingUser) in processOutgoingCallIntent()
228 .startOutgoingCall(handle, phoneAccountHandle, clientExtras, initiatingUser, in processOutgoingCallIntent()
273 PhoneAccountHandle phoneAccountHandle = intent.getParcelableExtra( in processIncomingCallIntent() local
276 if (phoneAccountHandle == null) { in processIncomingCallIntent()
281 if (phoneAccountHandle.getComponentName() == null) { in processIncomingCallIntent()
297 phoneAccountHandle.getComponentName()); in processIncomingCallIntent()
298 callsManager.processIncomingCallIntent(phoneAccountHandle, clientExtras); in processIncomingCallIntent()
302 PhoneAccountHandle phoneAccountHandle = intent.getParcelableExtra( in processUnknownCallIntent() local
[all …]
DTelecomServiceImpl.java298 PhoneAccountHandle phoneAccountHandle = null;
302 phoneAccountHandle = mPhoneAccountRegistrar
310 if (isCallerSimCallManager(phoneAccountHandle)
315 return phoneAccountHandle;
1615 public void addNewIncomingCall(PhoneAccountHandle phoneAccountHandle, Bundle extras,
1621 phoneAccountHandle);
1622 if (phoneAccountHandle != null &&
1623 phoneAccountHandle.getComponentName() != null) {
1624 if (isCallerSimCallManager(phoneAccountHandle)
1626 phoneAccountHandle.getComponentName())) {
[all …]
/packages/apps/Dialer/java/com/android/contacts/common/widget/
DSelectPhoneAccountDialogOptionsUtil.java55 PhoneAccountHandle phoneAccountHandle) { in setPhoneAccountHandle() argument
57 phoneAccountHandle.getComponentName().flattenToString()); in setPhoneAccountHandle()
58 entryBuilder.setPhoneAccountHandleId(phoneAccountHandle.getId()); in setPhoneAccountHandle()
60 parcel.writeParcelable(phoneAccountHandle.getUserHandle(), 0); in setPhoneAccountHandle()
70 for (PhoneAccountHandle phoneAccountHandle : phoneAccountHandles) { in builderWithAccounts()
73 SelectPhoneAccountDialogOptions.Entry.newBuilder(), phoneAccountHandle)); in builderWithAccounts() local

123456