HomeSort by relevance Sort by last modified time
    Searched defs:accountHandle (Results 1 - 10 of 10) 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/
SipBroadcastReceiver.java 61 PhoneAccountHandle accountHandle = intent.getParcelableExtra(SipUtil.EXTRA_PHONE_ACCOUNT);
62 if (accountHandle != null) {
65 TelecomManager.from(context).addNewIncomingCall(accountHandle, extras);
SipUtil.java 108 PhoneAccountHandle accountHandle =
117 PhoneAccount.Builder builder = PhoneAccount.builder(accountHandle, profile.getDisplayName())
SipConnectionService.java 78 PhoneAccountHandle accountHandle = request.getAccountHandle();
80 if (!Objects.equals(accountHandle.getComponentName(), sipComponentName)) {
113 String profileUri = accountHandle.getId();
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogListItemViews.java 90 public PhoneAccountHandle accountHandle;
CallLogAdapter.java 641 final PhoneAccountHandle accountHandle = PhoneAccountUtils.getAccount(
645 accountHandle);
672 views.accountHandle = accountHandle;
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
SelectPhoneAccountDialogFragment.java 129 PhoneAccountHandle accountHandle = getItem(position);
130 PhoneAccount account = mTelecomManager.getPhoneAccount(accountHandle);
CallCardPresenter.java 273 PhoneAccountHandle accountHandle = mPrimary.getAccountHandle();
274 if (accountHandle != null) {
277 PhoneAccount account = mgr.getPhoneAccount(accountHandle);
513 PhoneAccountHandle accountHandle = call.getAccountHandle();
514 if (accountHandle == null) {
517 return getTelecomManager().getPhoneAccount(accountHandle);
  /packages/services/Telecomm/src/com/android/server/telecom/
CallLogManager.java 58 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
66 this.accountHandle = accountHandle;
79 public final PhoneAccountHandle accountHandle;
144 final PhoneAccountHandle accountHandle = call.getTargetPhoneAccount();
149 accountHandle, creationTime, age, null);
170 PhoneAccountHandle accountHandle,
192 callType, features, accountHandle, start, duration, dataUsage);
276 c.callType, c.features, c.accountHandle, c.timestamp, c.durationInSec,
  /packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
TestConnectionService.java 301 PhoneAccountHandle accountHandle = request.getAccountHandle();
304 if (accountHandle != null && componentName.equals(accountHandle.getComponentName())) {
341 "Invalid inputs: " + accountHandle + " " + componentName));
348 PhoneAccountHandle accountHandle = request.getAccountHandle();
350 if (accountHandle != null && componentName.equals(accountHandle.getComponentName())) {
366 "Invalid inputs: " + accountHandle + " " + componentName));

Completed in 479 milliseconds