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.java86 ImsConference imsConference = new ImsConference(mMockTelecomAccountRegistry, in testPropertyPropagation()
89 new ImsConference.CarrierConfiguration.Builder().build()); in testPropertyPropagation()
128 ImsConference imsConference = new ImsConference(mMockTelecomAccountRegistry, in testSinglePartyEmulation()
131 new ImsConference.CarrierConfiguration.Builder().build()); in testSinglePartyEmulation()
178 ImsConference imsConference = new ImsConference(mMockTelecomAccountRegistry, in testDisconnectParticipantViaDisconnectState()
181 new ImsConference.CarrierConfiguration.Builder().build()); in testDisconnectParticipantViaDisconnectState()
242 ImsConference imsConference = new ImsConference(mMockTelecomAccountRegistry, in testDisconnectParticipantViaRemoval()
245 new ImsConference.CarrierConfiguration.Builder().build()); in testDisconnectParticipantViaRemoval()
300 ImsConference imsConference = new ImsConference(mMockTelecomAccountRegistry, in testSinglePartyEmulationEnterOnDisconnectParticipant()
303 new ImsConference.CarrierConfiguration.Builder().build()); in testSinglePartyEmulationEnterOnDisconnectParticipant()
[all …]
DImsConferenceControllerTest.java95 .addConference(any(ImsConference.class)); in testConferenceable()
129 .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()
410 ImsConference.CarrierConfiguration carrierConfig = null; in startConference()
421 ImsConference conference = new ImsConference(mTelecomAccountRegistry, mConnectionService, in startConference()
[all …]
DImsConference.java68 public class ImsConference extends TelephonyConferenceBase implements Holdable { class
139 public ImsConference.CarrierConfiguration build() { in build()
140 return new ImsConference.CarrierConfiguration(mIsMaximumConferenceSizeEnforced, in build()
248 int capabilites = ImsConference.this.getConnectionCapabilities();
418 public ImsConference(TelecomAccountRegistry telecomAccountRegistry, in ImsConference() method in ImsConference
1477 int properties = ImsConference.this.getConnectionProperties(); in updateConnectionProperties()
DTelephonyConnectionServiceProxy.java32 void addConference(ImsConference mImsConference); in addConference()
DTelephonyConnectionService.java109 public void addConference(ImsConference mImsConference) {
584 ImsConference conference = new ImsConference(TelecomAccountRegistry.getInstance(this), in prepareConference()
1345 if (conference instanceof ImsConference) { in onCreateConferenceComplete()
1346 ImsConference imsConference = (ImsConference)conference; in onCreateConferenceComplete()
DTelephonyConnection.java1673 if (current instanceof ImsConference) { in isConferenceHosted()
1674 ImsConference other = (ImsConference) current; in isConferenceHosted()