Home
last modified time | relevance | path

Searched refs:targetPhoneAccount (Results 1 – 9 of 9) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
DCreateConnectionProcessor.java65 public final PhoneAccountHandle targetPhoneAccount; field in CreateConnectionProcessor.CallAttemptRecord
69 PhoneAccountHandle targetPhoneAccount) { in CallAttemptRecord() argument
71 this.targetPhoneAccount = targetPhoneAccount; in CallAttemptRecord()
78 + Objects.toString(targetPhoneAccount) + ")"; in toString()
94 Objects.equals(targetPhoneAccount, other.targetPhoneAccount); in equals()
247 if (!attempt.connectionManagerPhoneAccount.equals(attempt.targetPhoneAccount) && in attemptNextPhoneAccount()
249 attempt.targetPhoneAccount)) { in attemptNextPhoneAccount()
269 mCall.setTargetPhoneAccount(attempt.targetPhoneAccount); in attemptNextPhoneAccount()
272 attempt.targetPhoneAccount)) { in attemptNextPhoneAccount()
275 PhoneAccountHandle remotePhoneAccount = attempt.targetPhoneAccount; in attemptNextPhoneAccount()
[all …]
DUserUtil.java142 PhoneAccountHandle targetPhoneAccount) { in getAssociatedUserForCall() argument
144 return targetPhoneAccount.getUserHandle(); in getAssociatedUserForCall()
149 PhoneAccount account = phoneAccountRegistrar.getPhoneAccountUnchecked(targetPhoneAccount); in getAssociatedUserForCall()
153 : targetPhoneAccount.getUserHandle(); in getAssociatedUserForCall()
DNewOutgoingCallIntentBroadcaster.java250 PhoneAccountHandle targetPhoneAccount = mIntent.getParcelableExtra( in evaluateCall() local
253 if (targetPhoneAccount != null) { in evaluateCall()
256 targetPhoneAccount); in evaluateCall()
DPhoneAccountRegistrar.java642 PhoneAccountHandle targetPhoneAccount = call.getTargetPhoneAccount(); in getSimCallManagerFromCall() local
644 call.getId(), targetPhoneAccount); in getSimCallManagerFromCall()
645 return getSimCallManagerFromHandle(targetPhoneAccount,userHandle); in getSimCallManagerFromCall()
655 public PhoneAccountHandle getSimCallManagerFromHandle(PhoneAccountHandle targetPhoneAccount, in getSimCallManagerFromHandle() argument
659 PhoneAccount phoneAccount = getPhoneAccountUnchecked(targetPhoneAccount); in getSimCallManagerFromHandle()
662 return targetPhoneAccount; in getSimCallManagerFromHandle()
665 int subId = getSubscriptionIdForPhoneAccount(targetPhoneAccount); in getSimCallManagerFromHandle()
670 targetPhoneAccount, subId, callManagerHandle); in getSimCallManagerFromHandle()
675 targetPhoneAccount, subId, callManagerHandle); in getSimCallManagerFromHandle()
DCallsManager.java2667 PhoneAccount targetPhoneAccount = mPhoneAccountRegistrar.getPhoneAccount(
2669 return targetPhoneAccount != null && targetPhoneAccount.isSelfManaged();
4392 public Call getHeldCallByConnectionService(PhoneAccountHandle targetPhoneAccount) {
4395 targetPhoneAccount)
DTelecomServiceImpl.java3316 private boolean isCallerSimCallManager(PhoneAccountHandle targetPhoneAccount) {
3320 accountHandle = mPhoneAccountRegistrar.getSimCallManagerFromHandle(targetPhoneAccount,
/packages/services/Telecomm/src/com/android/server/telecom/callredirection/
DCallRedirectionProcessor.java229 public void redirectCall(Uri gatewayUri, PhoneAccountHandle targetPhoneAccount, in redirectCall() argument
238 mPhoneAccountHandle = targetPhoneAccount; in redirectCall()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DTransactionTests.java429 private Call createSpyCall(PhoneAccountHandle targetPhoneAccount, int initialState, String id) { in createSpyCall() argument
441 targetPhoneAccount, in createSpyCall()
DCallsManagerTest.java3783 private Call addSpyCall(PhoneAccountHandle targetPhoneAccount, int initialState) { in addSpyCall() argument
3784 return addSpyCall(targetPhoneAccount, null, initialState, 0 /*caps*/, 0 /*props*/); in addSpyCall()
3787 private Call addSpyCall(PhoneAccountHandle targetPhoneAccount, in addSpyCall() argument
3789 return addSpyCall(targetPhoneAccount, connectionMgrAcct, initialState, 0 /*caps*/, in addSpyCall()
3793 private Call addSpyCall(PhoneAccountHandle targetPhoneAccount, in addSpyCall() argument
3796 Call ongoingCall = createCall(targetPhoneAccount, connectionMgrAcct, initialState); in addSpyCall()
3825 private Call createCall(PhoneAccountHandle targetPhoneAccount, int initialState) { in createCall() argument
3826 return createCall(targetPhoneAccount, null /* connectionManager */, initialState); in createCall()
3829 private Call createCall(PhoneAccountHandle targetPhoneAccount, in createCall() argument
3840 targetPhoneAccount, in createCall()
[all …]