Home
last modified time | relevance | path

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

/packages/services/Telecomm/src/com/android/server/telecom/
DCreateConnectionProcessor.java60 public final PhoneAccountHandle targetPhoneAccount; field in CreateConnectionProcessor.CallAttemptRecord
64 PhoneAccountHandle targetPhoneAccount) { in CallAttemptRecord() argument
66 this.targetPhoneAccount = targetPhoneAccount; in CallAttemptRecord()
73 + Objects.toString(targetPhoneAccount) + ")"; in toString()
89 Objects.equals(targetPhoneAccount, other.targetPhoneAccount); in equals()
224 if (!attempt.connectionManagerPhoneAccount.equals(attempt.targetPhoneAccount) && in attemptNextPhoneAccount()
226 attempt.targetPhoneAccount)) { in attemptNextPhoneAccount()
246 mCall.setTargetPhoneAccount(attempt.targetPhoneAccount); in attemptNextPhoneAccount()
326 PhoneAccountHandle targetPhoneAccountHandle = mAttemptRecords.get(0).targetPhoneAccount; in shouldSetConnectionManager()
333 PhoneAccount targetPhoneAccount = mPhoneAccountRegistrar in shouldSetConnectionManager() local
[all …]
DPhoneAccountRegistrar.java496 PhoneAccountHandle targetPhoneAccount = call.getTargetPhoneAccount(); in getSimCallManagerFromCall() local
498 call.getId(), targetPhoneAccount); in getSimCallManagerFromCall()
499 return getSimCallManagerFromHandle(targetPhoneAccount,userHandle); in getSimCallManagerFromCall()
509 public PhoneAccountHandle getSimCallManagerFromHandle(PhoneAccountHandle targetPhoneAccount, in getSimCallManagerFromHandle() argument
513 PhoneAccount phoneAccount = getPhoneAccountUnchecked(targetPhoneAccount); in getSimCallManagerFromHandle()
516 return targetPhoneAccount; in getSimCallManagerFromHandle()
519 int subId = getSubscriptionIdForPhoneAccount(targetPhoneAccount); in getSimCallManagerFromHandle()
524 targetPhoneAccount, subId, callManagerHandle); in getSimCallManagerFromHandle()
529 targetPhoneAccount, subId, callManagerHandle); in getSimCallManagerFromHandle()
DNewOutgoingCallIntentBroadcaster.java245 PhoneAccountHandle targetPhoneAccount = mIntent.getParcelableExtra( in evaluateCall() local
248 if (targetPhoneAccount != null) { in evaluateCall()
251 targetPhoneAccount); in evaluateCall()
DTelecomServiceImpl.java2260 private boolean isCallerSimCallManager(PhoneAccountHandle targetPhoneAccount) {
2264 accountHandle = mPhoneAccountRegistrar.getSimCallManagerFromHandle(targetPhoneAccount,
DCallsManager.java1943 PhoneAccount targetPhoneAccount = mPhoneAccountRegistrar.getPhoneAccount(
1945 return targetPhoneAccount != null && targetPhoneAccount.isSelfManaged();
3236 public Call getHeldCallByConnectionService(PhoneAccountHandle targetPhoneAccount) {
3239 targetPhoneAccount)
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallsManagerTest.java1442 private Call addSpyCall(PhoneAccountHandle targetPhoneAccount, int initialState) { in addSpyCall() argument
1443 return addSpyCall(targetPhoneAccount, null, initialState, 0 /*caps*/, 0 /*props*/); in addSpyCall()
1446 private Call addSpyCall(PhoneAccountHandle targetPhoneAccount, in addSpyCall() argument
1448 return addSpyCall(targetPhoneAccount, connectionMgrAcct, initialState, 0 /*caps*/, in addSpyCall()
1452 private Call addSpyCall(PhoneAccountHandle targetPhoneAccount, in addSpyCall() argument
1455 Call ongoingCall = createCall(targetPhoneAccount, connectionMgrAcct, initialState); in addSpyCall()
1485 private Call createCall(PhoneAccountHandle targetPhoneAccount, int initialState) { in createCall() argument
1486 return createCall(targetPhoneAccount, null /* connectionManager */, initialState); in createCall()
1489 private Call createCall(PhoneAccountHandle targetPhoneAccount, in createCall() argument
1500 targetPhoneAccount, in createCall()
/packages/services/Telecomm/src/com/android/server/telecom/callredirection/
DCallRedirectionProcessor.java191 public void redirectCall(Uri gatewayUri, PhoneAccountHandle targetPhoneAccount, in redirectCall() argument
200 mPhoneAccountHandle = targetPhoneAccount; in redirectCall()