Home
last modified time | relevance | path

Searched refs:isSelfManaged (Results 1 – 19 of 19) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
DCallsManager.java656 incomingCall.isSelfManaged() || in onSuccessfulIncomingCall()
661 incomingCall.isSelfManaged(), in onSuccessfulIncomingCall()
1201 call.setIsSelfManaged(phoneAccount.isSelfManaged()); in processIncomingCallIntent()
1202 if (call.isSelfManaged()) { in processIncomingCallIntent()
1210 if (activeCall != null && !canHold(activeCall) && activeCall.isSelfManaged()) { in processIncomingCallIntent()
1305 if (!isHandoverAllowed || (call.isSelfManaged() && !isIncomingCallPermitted(call, in processIncomingCallIntent()
1426 boolean isSelfManaged = account != null && account.isSelfManaged(); in startOutgoingCall()
1452 call.setIsSelfManaged(isSelfManaged); in startOutgoingCall()
1453 if (isSelfManaged) { in startOutgoingCall()
1553 if (isPotentialInCallMMICode(handle) && !isSelfManaged) { in startOutgoingCall()
[all …]
DRinger.java419 if (call.isSelfManaged()) { in startCallWaiting()
540 boolean isSelfManaged = call.isSelfManaged(); in getRingerAttributes()
563 boolean endEarly = isTheaterModeOn || letDialerHandleRinging || isSelfManaged || in getRingerAttributes()
569 isTheaterModeOn, letDialerHandleRinging, isSelfManaged, hasExternalRinger, in getRingerAttributes()
579 isRingerAudible || (isHfpDeviceAttached && shouldRingForContact) || isSelfManaged; in getRingerAttributes()
DCallLogManager.java189 boolean showNotification = !call.isSelfManaged(); in onCallStateChanged()
280 return !call.isSelfManaged() || shouldCallSelfManagedLogged; in shouldLogDisconnectedCall()
360 call.getInitiatingUser(), call.isSelfManaged(), logCallCompletedListener, in logCall()
367 call.getInitiatingUser(), call.isSelfManaged(), logCallCompletedListener, in logCall()
408 boolean isSelfManaged, in logCall() argument
438 if (isSelfManaged) { in logCall()
DNewOutgoingCallIntentBroadcaster.java246 boolean isSelfManaged = false; in evaluateCall()
252 isSelfManaged = phoneAccount.isSelfManaged(); in evaluateCall()
259 if (isSelfManaged) { in evaluateCall()
DCall.java836 if (isSelfManaged()) { in getDescription()
1103 isSelfManaged(), isExternalCall()); in setState()
1412 if (!isSelfManaged()) { in isLoggedSelfManaged()
1511 public boolean isSelfManaged() { in isSelfManaged() method in Call
1515 public void setIsSelfManaged(boolean isSelfManaged) { in setIsSelfManaged() argument
1516 mIsSelfManaged = isSelfManaged; in setIsSelfManaged()
1762 if (isSelfManaged()) { in setConnectionProperties()
DInCallController.java278 if (call != null && call.isSelfManaged() && in connect()
989 if (call.isSelfManaged() && !info.isSelfManagedCallsSupported()) { in onCallAdded()
1054 if (call.isSelfManaged() && !info.isSelfManagedCallsSupported()) { in onExternalCallChanged()
1601 if ((call.isSelfManaged() && !info.isSelfManagedCallsSupported()) || in onConnected()
1677 if (call.isSelfManaged() && !info.isSelfManagedCallsSupported()) { in updateCall()
DPhoneStateBroadcaster.java107 if (!call.isSelfManaged() && call.getHandle() != null) { in sendPhoneStateChangedBroadcast()
DTelecomServiceImpl.java1374 boolean isSelfManaged = phoneAccountHandle != null &&
1376 if (isSelfManaged) {
1426 intent, callingPackage, isSelfManaged ||
2191 return phoneAccount != null && phoneAccount.isSelfManaged(); in isSelfManagedConnectionService()
DCallIntentProcessor.java148 if (!callsManager.isSelfManaged(phoneAccountHandle, in processOutgoingCallIntent()
DCreateConnectionProcessor.java167 if (!mCall.isSelfManaged()) { in process()
DPhoneAccountRegistrar.java766 return account.isSelfManaged(); in isSelfManagedPhoneAccount()
/packages/services/Telecomm/src/com/android/server/telecom/ui/
DIncomingCallNotifier.java141 .filter(call -> call.isSelfManaged() && call.isIncoming() && in updateIncomingCall()
237 if (ongoingCall != null && ongoingCall.isSelfManaged()) { in getNotificationBuilder()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallsManagerTest.java821 doReturn(true).when(newCall).isSelfManaged(); in testSetActiveCallWhenOngoingCallCanNotBeHeldAndFromDifferentConnectionService()
845 doReturn(true).when(newCall).isSelfManaged(); in testSetActiveCallWhenOngoingCallCanNotBeHeldAndHasSameConnectionService()
869 doReturn(true).when(newCall).isSelfManaged(); in testSetActiveCallWhenOngoingCallCanBeHeld()
890 doReturn(true).when(ongoingCall).isSelfManaged(); in testDisconnectDialingCallOnIncoming()
922 doReturn(true).when(incomingCall).isSelfManaged(); in testNoFilteringOfSelfManagedCalls()
1053 doReturn(false).when(incomingCall).isSelfManaged(); in testNoFilteringOfCallsWhenPhoneAccountRequestsSkipped()
DIncomingCallNotifierTest.java77 when(mRingingCall.isSelfManaged()).thenReturn(true); in setUp()
DTelecomSystemTest.java769 boolean isSelfManaged = phoneAccountHandle == mPhoneAccountSelfManaged.getAccountHandle(); in startOutgoingPhoneCallWaitForBroadcaster()
770 if (!hasInCallAdapter && !isSelfManaged) { in startOutgoingPhoneCallWaitForBroadcaster()
DRingerTest.java229 when(mockCall2.isSelfManaged()).thenReturn(true); in testNoActionWhenCallIsSelfManaged()
DNewOutgoingCallIntentBroadcasterTest.java112 when(mPhoneAccount.isSelfManaged()).thenReturn(true); in setUp()
DCallLogManagerTest.java751 when(fakeMissedCall.isSelfManaged()).thenReturn(true); in testLogMissedSelfManaged()
DInCallControllerTests.java1073 when(mMockCall.isSelfManaged()).thenReturn(isSelfManagedCall); in setupMocks()