Home
last modified time | relevance | path

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

/packages/services/Telecomm/src/com/android/server/telecom/
DCall.java335 private ConnectionServiceWrapper mConnectionService; field in Call
721 if (mConnectionService != null && mConnectionService.getComponentName() != null) { in toString()
722 component = mConnectionService.getComponentName().flattenToShortString(); in toString()
816 return mConnectionService; in getConnectionServiceWrapper()
1564 mConnectionService.startRtt(this, in setConnectionProperties()
1647 return mConnectionService; in getConnectionService()
1666 mConnectionService = service; in setConnectionService()
1668 mConnectionService.addCall(this); in setConnectionService()
1687 if (mConnectionService != null) { in replaceConnectionService()
1688 ConnectionServiceWrapper serviceTemp = mConnectionService; in replaceConnectionService()
[all …]
DCreateConnectionTimeout.java36 private final ConnectionServiceWrapper mConnectionService; field in CreateConnectionTimeout
47 mConnectionService = service; in CreateConnectionTimeout()
110 mConnectionService.disconnect(mCall); in loggedRun()
/packages/services/Telephony/src/com/android/services/telephony/
DTelephonyConferenceController.java67 private final TelephonyConnectionServiceProxy mConnectionService; field in TelephonyConferenceController
71 mConnectionService = connectionService; in TelephonyConferenceController()
201 Collection<Connection> allConnections = mConnectionService.getAllConnections(); in recalculateConference()
268 mConnectionService.addConference(mTelephonyConference); in recalculateConference()
DImsConferenceController.java94 private final TelephonyConnectionServiceProxy mConnectionService; field in ImsConferenceController
120 mConnectionService = connectionService; in ImsConferenceController()
379 ImsConference conference = new ImsConference(mTelecomAccountRegistry, mConnectionService, in startConference()
384 mConnectionService.addConference(conference); in startConference()
DCdmaConferenceController.java81 private final TelephonyConnectionService mConnectionService; field in CdmaConferenceController
86 mConnectionService = connectionService; in CdmaConferenceController()
215 mConnectionService.addConference(mConference); in recalculateConference()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DBasicCallTests.java386 return mConnectionServiceFixtureA.mConnectionService.rejectedCallIds.size() == 1; in testIncomingCallFromContactWithSendToVoicemailIsRejected()
428 assertEquals(0, mConnectionServiceFixtureA.mConnectionService.rejectedCallIds.size()); in testIncomingCallCallerInfoLookupTimesOutIsAllowed()
478 return mConnectionServiceFixtureA.mConnectionService.rejectedCallIds.size() == 1; in testIncomingCallFromBlockedNumberIsRejected()
508 assertEquals(0, mConnectionServiceFixtureA.mConnectionService.rejectedCallIds.size()); in testIncomingCallBlockCheckTimesoutIsAllowed()
DConnectionServiceFixture.java397 FakeConnectionService mConnectionService = new FakeConnectionService(); field in ConnectionServiceFixture
398 private IConnectionService.Stub mConnectionServiceSpy = Mockito.spy(mConnectionService);