Home
last modified time | relevance | path

Searched refs:getTargetPhoneAccount (Results 1 – 22 of 22) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
DCallsManager.java666 incomingCall.getTargetPhoneAccount()); in onSuccessfulIncomingCall()
1367 if (!isHandoverFromPhoneAccountSupported(fromCall.getTargetPhoneAccount())) { in processIncomingCallIntent()
1399 call.getTargetPhoneAccount()))) { in processIncomingCallIntent()
1684 notifyCreateConferenceFailed(finalCall.getTargetPhoneAccount(), in startOutgoingCall()
1688 finalCall.getTargetPhoneAccount(), finalCall); in startOutgoingCall()
1715 notifyCreateConferenceFailed(finalCall.getTargetPhoneAccount(), in startOutgoingCall()
1719 finalCall.getTargetPhoneAccount(), finalCall); in startOutgoingCall()
2329 call.getTargetPhoneAccount(), call.getInitiatingUser());
2355 call.getTargetPhoneAccount());
2358 if (call.getTargetPhoneAccount() != null || call.isEmergencyCall()) {
[all …]
DCreateConnectionProcessor.java164 if (mCall.getTargetPhoneAccount() != null) { in process()
166 mCall.getTargetPhoneAccount(), mCall.getTargetPhoneAccount())); in process()
170 adjustAttemptsForEmergency(mCall.getTargetPhoneAccount()); in process()
DCallRecordingTonePlayer.java335 .filter(call -> (call.getTargetPhoneAccount() != null && in hasCallForPackage()
336 call.getTargetPhoneAccount() in hasCallForPackage()
DMissedCallNotifier.java52 mPhoneAccountHandle = call.getTargetPhoneAccount(); in CallInfo()
DConnectionServiceWrapper.java1221 .setAccountHandle(call.getTargetPhoneAccount()) in createConference()
1312 call.getHandoverSourceCall().getTargetPhoneAccount()); in createConnection()
1320 .setAccountHandle(call.getTargetPhoneAccount()) in createConnection()
1382 call.getTargetPhoneAccount(), in createConnectionFailed()
1428 call.getTargetPhoneAccount(), in createConferenceFailed()
1468 call.getTargetPhoneAccount(), in handoverFailed()
DCall.java904 getTargetPhoneAccount(), in toString()
931 PhoneAccountHandle targetPhoneAccountHandle = getTargetPhoneAccount(); in getDescription()
1568 public PhoneAccountHandle getTargetPhoneAccount() { in getTargetPhoneAccount() method in Call
1586 if (getTargetPhoneAccount() == null) { in getTargetPhoneAccountLabel()
1590 .getPhoneAccountUnchecked(getTargetPhoneAccount()); in getTargetPhoneAccountLabel()
1609 if (getTargetPhoneAccount() == null) { in isLoggedSelfManaged()
1613 .getPhoneAccountUnchecked(getTargetPhoneAccount()); in isLoggedSelfManaged()
DParcelableCallUtils.java163 phoneAccountRegistrar.isUserSelectedSmsPhoneAccount(call.getTargetPhoneAccount()); in toParcelableCall()
241 .setAccountHandle(call.getTargetPhoneAccount()) in toParcelableCall()
DCallLogManager.java215 .getSubscriptionIdForPhoneAccount(call.getTargetPhoneAccount()); in shouldLogDisconnectedCall()
295 PhoneAccountHandle accountHandle = call.getTargetPhoneAccount(); in logCall()
DPhoneStateBroadcaster.java145 int subscriptionId = tm.getSubscriptionId(call.getTargetPhoneAccount()); in sendOutgoingEmergencyCallEvent()
DRespondViaSmsManager.java146 call.getTargetPhoneAccount()); in onIncomingCallRejected()
DPhoneAccountRegistrar.java496 userHandle = call.getTargetPhoneAccount().getUserHandle(); in getSimCallManagerFromCall()
498 PhoneAccountHandle targetPhoneAccount = call.getTargetPhoneAccount(); in getSimCallManagerFromCall()
DInCallController.java313 call.getTargetPhoneAccount()); in connect()
/packages/services/Telecomm/src/com/android/server/telecom/ui/
DIncomingCallNotifier.java150 incomingCallOp.get().getTargetPhoneAccount())) { in updateIncomingCall()
223 incomingCall.getTargetPhoneAccount()) : 1; in getNotificationBuilder()
DDisconnectedCallNotifier.java146 UserHandle userHandle = call.getTargetPhoneAccount() != null ? in onCallStateChanged()
147 call.getTargetPhoneAccount().getUserHandle() : call.getInitiatingUser(); in onCallStateChanged()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DInCallControllerTests.java371 when(mMockCall.getTargetPhoneAccount()).thenReturn(PA_HANDLE); in testBindToService_NoServicesFound_OutgoingCall()
409 when(mMockCall.getTargetPhoneAccount()).thenReturn(PA_HANDLE); in testBindToService_DefaultDialer_NoEmergency()
463 when(mMockCall.getTargetPhoneAccount()).thenReturn(PA_HANDLE); in testBindToService_SystemDialer_Emergency()
540 when(mMockCall.getTargetPhoneAccount()).thenReturn(PA_HANDLE); in testBindToService_SystemDialer_Crash()
629 when(mMockCall.getTargetPhoneAccount()).thenReturn(PA_HANDLE); in testBindToService_DefaultDialer_FallBackToSystem()
1293 when(mMockCall.getTargetPhoneAccount()).thenReturn(PA_HANDLE); in setupMocks()
DDisconnectedCallNotifierTest.java152 when(call.getTargetPhoneAccount()).thenReturn(PHONE_ACCOUNT_HANDLE); in createCall()
DCreateConnectionProcessorTest.java172 when(mMockCall.getTargetPhoneAccount()).thenReturn(pAHandle); in testbadPhoneAccount()
647 when(call.getTargetPhoneAccount()).thenReturn(pAHandle); in setTargetPhoneAccount()
DCallRecordingTonePlayerTest.java334 when(call.getTargetPhoneAccount()).thenReturn(TEST_PHONE_ACCOUNT); in addValidCall()
DCallRedirectionProcessorTest.java124 when(mCall.getTargetPhoneAccount()).thenReturn(mPhoneAccountHandle); in setUp()
DCallsManagerTest.java1150 newCall.getHandle(), newCall.getTargetPhoneAccount(), new Bundle(), in testBlockNonEmergencyCallDuringEmergencyCall()
1503 outgoingCall.getHandle(), outgoingCall.getTargetPhoneAccount(), new Bundle(), in testReuseCallConcurrency()
DCallLogManagerTest.java1061 when(fakeCall.getTargetPhoneAccount()).thenReturn(phoneAccountHandle); in makeFakeCall()
/packages/services/Telecomm/src/com/android/server/telecom/callredirection/
DCallRedirectionProcessor.java287 mPhoneAccountHandle = call.getTargetPhoneAccount(); in CallRedirectionProcessor()