HomeSort by relevance Sort by last modified time
    Searched defs:accountHandle (Results 1 - 17 of 17) sorted by null

  /frameworks/base/telecomm/java/android/telecom/
RemoteConnectionManager.java 57 PhoneAccountHandle accountHandle = request.getAccountHandle();
58 if (accountHandle == null) {
59 throw new IllegalArgumentException("accountHandle must be specified.");
64 throw new UnsupportedOperationException("accountHandle not supported: "
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipPhoneAccountSettingsActivity.java 44 PhoneAccountHandle accountHandle = (PhoneAccountHandle)
46 Log.i(TAG, "" + accountHandle);
48 if (accountHandle != null) {
50 String profileName = SipUtil.getSipProfileNameFromPhoneAccount(accountHandle);
SipBroadcastReceiver.java 61 PhoneAccountHandle accountHandle = intent.getParcelableExtra(SipUtil.EXTRA_PHONE_ACCOUNT);
62 if (accountHandle != null) {
65 TelecomManager.from(context).addNewIncomingCall(accountHandle, extras);
SipUtil.java 114 PhoneAccountHandle accountHandle =
123 PhoneAccount.Builder builder = PhoneAccount.builder(accountHandle, profile.getDisplayName())
SipConnectionService.java 78 PhoneAccountHandle accountHandle = request.getAccountHandle();
80 if (!Objects.equals(accountHandle.getComponentName(), sipComponentName)) {
113 String profileName = accountHandle.getId();
  /cts/tests/tests/telecom/src/android/telecom/cts/
DataObjectUnitTests.java 56 PhoneAccountHandle accountHandle = new PhoneAccountHandle(
62 accountHandle, ACCOUNT_LABEL)
72 assertEquals(accountHandle, account.getAccountHandle());
90 assertEquals(accountHandle, parcelAccount.getAccountHandle());
105 PhoneAccountHandle accountHandle = new PhoneAccountHandle(
109 assertNotNull(accountHandle);
110 assertEquals(component, accountHandle.getComponentName());
111 assertEquals(ACCOUNT_ID, accountHandle.getId());
112 assertEquals(userHandle, accountHandle.getUserHandle());
113 assertEquals(0, accountHandle.describeContents())
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/
PhoneCallDetails.java 76 public PhoneAccountHandle accountHandle;
  /packages/services/Telephony/src/com/android/services/telephony/
PstnPhoneCapabilitiesNotifier.java 126 PhoneAccountHandle accountHandle =
130 PhoneAccount oldPhoneAccount = telecomMgr.getPhoneAccount(accountHandle);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogAsyncTaskUtil.java 148 final PhoneAccountHandle accountHandle = PhoneAccountUtils.getAccount(
155 boolean isVoicemail = PhoneNumberUtil.isVoicemailNumber(context, accountHandle, number);
164 details.accountHandle = accountHandle;
CallLogListItemViewHolder.java 118 public PhoneAccountHandle accountHandle;
269 mTelecomCallLogCache.isVoicemailNumber(accountHandle, number);
CallLogAdapter.java 232 || mTelecomCallLogCache.isVoicemailNumber(vh.accountHandle, vh.number)
477 final PhoneAccountHandle accountHandle = PhoneAccountUtils.getAccount(
483 mTelecomCallLogCache.isVoicemailNumber(accountHandle, number);
498 details.accountHandle = accountHandle;
531 views.accountHandle = accountHandle;
  /packages/services/Telecomm/src/com/android/server/telecom/
CallLogManager.java 55 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
63 this.accountHandle = accountHandle;
76 public final PhoneAccountHandle accountHandle;
143 PhoneAccountHandle accountHandle = call.getTargetPhoneAccount();
144 if (emergencyAccountHandle.equals(accountHandle)) {
145 accountHandle = null;
151 callLogType, callFeatures, accountHandle, creationTime, age, null);
172 PhoneAccountHandle accountHandle,
194 callType, features, accountHandle, start, duration, dataUsage)
    [all...]
TelecomServiceImpl.java 117 public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) {
123 mPhoneAccountRegistrar.setUserSelectedOutgoingPhoneAccount(accountHandle);
194 public PhoneAccount getPhoneAccount(PhoneAccountHandle accountHandle) {
197 if (!isVisibleToCaller(accountHandle)) {
198 Log.d(this, "%s is not visible for the calling user [gPA]", accountHandle);
202 return mPhoneAccountRegistrar.getPhoneAccount(accountHandle);
204 Log.e(this, e, "getPhoneAccount %s", accountHandle);
273 PhoneAccountHandle accountHandle = null;
277 accountHandle = mPhoneAccountRegistrar.getSimCallManager(user);
284 if (!isVisibleToCaller(accountHandle)) {
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/widget/
SelectPhoneAccountDialogFragment.java 245 PhoneAccountHandle accountHandle = getItem(position);
246 PhoneAccount account = mTelecomManager.getPhoneAccount(accountHandle);
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
TestConnectionService.java 338 PhoneAccountHandle accountHandle = request.getAccountHandle();
341 if (accountHandle != null && componentName.equals(accountHandle.getComponentName())) {
372 "Invalid inputs: " + accountHandle + " " + componentName));
379 PhoneAccountHandle accountHandle = request.getAccountHandle();
381 if (accountHandle != null && componentName.equals(accountHandle.getComponentName())) {
397 "Invalid inputs: " + accountHandle + " " + componentName));
  /packages/apps/InCallUI/src/com/android/incallui/
CallCardPresenter.java 327 PhoneAccountHandle accountHandle = mPrimary.getAccountHandle();
328 if (accountHandle != null) {
330 PhoneAccount account = mgr.getPhoneAccount(accountHandle);
652 PhoneAccountHandle accountHandle = call.getAccountHandle();
653 if (accountHandle == null) {
656 return InCallPresenter.getInstance().getTelecomManager().getPhoneAccount(accountHandle);
    [all...]
InCallPresenter.java 631 public void handleAccountSelection(PhoneAccountHandle accountHandle, boolean setDefault) {
636 TelecomAdapter.getInstance().phoneAccountSelected(callId, accountHandle, setDefault);
    [all...]

Completed in 719 milliseconds