Home
last modified time | relevance | path

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

/packages/services/Telephony/tests/src/com/android/services/telephony/
DImsConferenceTest.java88 ImsConference imsConference = new ImsConference(mMockTelecomAccountRegistry, in testPropertyPropagation()
91 new ImsConference.CarrierConfiguration.Builder().build()); in testPropertyPropagation()
130 ImsConference imsConference = new ImsConference(mMockTelecomAccountRegistry, in testSinglePartyEmulation()
133 new ImsConference.CarrierConfiguration.Builder().build()); in testSinglePartyEmulation()
180 ImsConference imsConference = new ImsConference(mMockTelecomAccountRegistry, in testDisconnectParticipantViaDisconnectState()
183 new ImsConference.CarrierConfiguration.Builder().build()); in testDisconnectParticipantViaDisconnectState()
244 ImsConference imsConference = new ImsConference(mMockTelecomAccountRegistry, in testDisconnectParticipantViaRemoval()
247 new ImsConference.CarrierConfiguration.Builder().build()); in testDisconnectParticipantViaRemoval()
302 ImsConference imsConference = new ImsConference(mMockTelecomAccountRegistry, in testSinglePartyEmulationEnterOnDisconnectParticipant()
305 new ImsConference.CarrierConfiguration.Builder().build()); in testSinglePartyEmulationEnterOnDisconnectParticipant()
[all …]
DImsConferenceControllerTest.java93 .addConference(any(ImsConference.class)); in testConferenceable()
125 .addConference(any(ImsConference.class)); in testMergeMultiPartyCalls()
/packages/services/Telephony/src/com/android/services/telephony/
DImsConferenceController.java59 if (conference instanceof ImsConference) {
111 private final ImsConference.FeatureFlagProxy mFeatureFlagProxy;
123 private final ArrayList<ImsConference> mImsConferences = new ArrayList<>(2);
135 ImsConference.FeatureFlagProxy featureFlagProxy) { in ImsConferenceController()
141 void addConference(ImsConference conference) { in addConference()
268 for (ImsConference conference : mImsConferences) { in recalculateConferenceable()
319 } else if (c instanceof ImsConference) { in recalculateConferenceable()
320 ImsConference imsConference = (ImsConference) c; in recalculateConferenceable()
424 ImsConference.CarrierConfiguration carrierConfig = null; in startConference()
435 ImsConference conference = new ImsConference(mTelecomAccountRegistry, mConnectionService, in startConference()
[all …]
DImsConference.java70 public class ImsConference extends TelephonyConferenceBase implements Holdable { class
141 public ImsConference.CarrierConfiguration build() { in build()
142 return new ImsConference.CarrierConfiguration(mIsMaximumConferenceSizeEnforced, in build()
250 int capabilites = ImsConference.this.getConnectionCapabilities();
420 public ImsConference(TelecomAccountRegistry telecomAccountRegistry, in ImsConference() method in ImsConference
1519 int properties = ImsConference.this.getConnectionProperties(); in updateConnectionProperties()
DTelephonyConnectionServiceProxy.java32 void addConference(ImsConference mImsConference); in addConference()
DTelephonyConnectionService.java116 public void addConference(ImsConference mImsConference) {
558 ImsConference conference = new ImsConference(TelecomAccountRegistry.getInstance(this), in prepareConference()
1339 if (conference instanceof ImsConference) { in onCreateConferenceComplete()
1340 ImsConference imsConference = (ImsConference)conference; in onCreateConferenceComplete()
DTelephonyConnection.java1949 if (current instanceof ImsConference) { in isConferenceHosted()
1950 ImsConference other = (ImsConference) current; in isConferenceHosted()