Home
last modified time | relevance | path

Searched refs:conference (Results 1 – 25 of 30) sorted by relevance

12

/packages/services/Telephony/src/com/android/services/telephony/
DImsConferenceController.java47 public void onDestroyed(Conference conference) {
49 Log.v(ImsConferenceController.class, "onDestroyed: %s", conference);
52 mImsConferences.remove(conference);
237 for (ImsConference conference : mImsConferences) { in recalculateConferenceable()
239 Log.d(this, "recalc - %s %s", conference.getState(), conference); in recalculateConferenceable()
242 if (!conference.isConferenceHost()) { in recalculateConferenceable()
244 Log.v(this, "skipping conference (not hosted on this device): %s", conference); in recalculateConferenceable()
249 switch (conference.getState()) { in recalculateConferenceable()
253 if (!conference.isFullConference()) { in recalculateConferenceable()
254 conferenceParticipantsSet.addAll(conference.getConnections()); in recalculateConferenceable()
[all …]
DTelephonyConnectionService.java121 Connection connection, Conference conference) {
123 .addExistingConnection(phoneAccountHandle, connection, conference);
133 public void onConferenceChanged(Connection connection, Conference conference) {
1090 public void onConferenceAdded(Conference conference) { in onConferenceAdded() argument
1091 if (conference instanceof Holdable) { in onConferenceAdded()
1092 mHoldTracker.addHoldable(conference.getPhoneAccountHandle(), (Holdable) conference); in onConferenceAdded()
1097 public void onConferenceRemoved(Conference conference) { in onConferenceRemoved() argument
1098 if (conference instanceof Holdable) { in onConferenceRemoved()
1099 mHoldTracker.removeHoldable(conference.getPhoneAccountHandle(), (Holdable) conference); in onConferenceRemoved()
1751 for (Conference conference : getAllConferences()) { in checkAdditionalOutgoingCallLimits()
[all …]
DTelephonyConferenceController.java109 private boolean isFullConference(Conference conference) { in isFullConference() argument
110 return conference.getConnections().size() >= TELEPHONY_CONFERENCE_MAX_SIZE; in isFullConference()
DTelephonyConnectionServiceProxy.java37 Connection connection, Conference conference); in addExistingConnection() argument
DTelephonyConference.java101 phone.conference(); in onMerge()
DImsConference.java491 phone.conference(); in onMerge()
DTelephonyConnection.java1014 getPhone().conference(); in performConference()
/packages/apps/Dialer/java/com/android/dialer/simulator/impl/
DSimulatorConferenceCreator.java151 SimulatorConference conference = in onConference() local
154 conference.addConnection(connection1); in onConference()
155 conference.addConnection(connection2); in onConference()
156 conference.addListener(this); in onConference()
157 SimulatorConnectionService.getInstance().addConference(conference); in onConference()
191 public void onEvent(@NonNull SimulatorConference conference, @NonNull Event event) { in onEvent() argument
194 int capabilities = conference.getConnectionCapabilities(); in onEvent()
196 conference.setConnectionCapabilities(capabilities); in onEvent()
201 conference.removeConnection(connectionToRemove); in onEvent()
204 for (Connection connection : new ArrayList<>(conference.getConnections())) { in onEvent()
[all …]
DSimulatorConnectionsBankImpl.java123 public void onEvent(@NonNull SimulatorConference conference, @NonNull Event event) { in onEvent() argument
126 int capabilities = conference.getConnectionCapabilities(); in onEvent()
128 conference.setConnectionCapabilities(capabilities); in onEvent()
133 conference.removeConnection(connectionToRemove); in onEvent()
136 for (Connection connection : new ArrayList<>(conference.getConnections())) { in onEvent()
139 conference.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in onEvent()
DSimulatorConference.java182 void onEvent(@NonNull SimulatorConference conference, @NonNull Event event); in onEvent() argument
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallExtrasTest.java365 Conference conference = mConnectionServiceFixtureA.mLatestConference; in testConferenceSetExtras() local
366 assertNotNull(conference); in testConferenceSetExtras()
371 conference.setExtras(someExtras); in testConferenceSetExtras()
383 conference.setExtras(someExtras); in testConferenceSetExtras()
408 Conference conference = mConnectionServiceFixtureA.mLatestConference; in testConferenceExtraOperations() local
409 assertNotNull(conference); in testConferenceExtraOperations()
411 conference.putExtra(EXTRA_KEY_STR, EXTRA_VALUE_STR); in testConferenceExtraOperations()
412 conference.putExtra(EXTRA_KEY_INT, EXTRA_VALUE_INT); in testConferenceExtraOperations()
413 conference.putExtra(EXTRA_KEY_BOOL, true); in testConferenceExtraOperations()
428 conference.removeExtras(new ArrayList<String>(Arrays.asList(EXTRA_KEY_STR))); in testConferenceExtraOperations()
[all …]
DConnectionServiceFixture.java318 public void conference(String conferenceCallId, String callId, in conference() method in ConnectionServiceFixture.FakeConnectionService
320 mConnectionServiceDelegateAdapter.conference(conferenceCallId, callId, info); in conference()
DBasicCallTests.java655 mInCallServiceFixtureX.getInCallAdapter().conference( in testAddCallToConference1()
673 .conference(callId3.mCallId, conferenceCall.getId()); in testAddCallToConference2()
DTelecomSystemTest.java393 inCallAdapter.conference(callId1.mCallId, callId2.mCallId); in makeConferenceCall()
DBluetoothPhoneServiceTest.java771 verify(mMockCallsManager).conference(activeCall, conferenceableCall); in testProcessChldAddHeldToConf()
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DTestConnectionManager.java252 public void onStateChanged(RemoteConference conference, int oldState, int newState) {
270 public void onDisconnected(RemoteConference conference,
277 RemoteConference conference,
289 RemoteConference conference,
300 public void onConnectionCapabilitiesChanged(RemoteConference conference,
306 public void onConnectionPropertiesChanged(RemoteConference conference,
312 public void onDestroyed(RemoteConference conference) {
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/connserv/
DHfpClientConnection.java136 HfpClientConference conference = (HfpClientConference) getConference(); in handleCallChanged() local
145 if (conference != null) { in handleCallChanged()
146 conference.setActive(); in handleCallChanged()
152 if (conference != null) { in handleCallChanged()
153 conference.setOnHold(); in handleCallChanged()
/packages/services/Telecomm/src/com/android/server/telecom/
DInCallAdapter.java322 public void conference(String callId, String otherCallId) { in conference() method in InCallAdapter
331 mCallsManager.conference(call, otherCall); in conference()
DBluetoothPhoneServiceImpl.java552 mCallsManager.conference(activeCall, conferenceable.get(0)); in processChld()
DConnectionServiceWrapper.java1483 void conference(final Call call, Call otherCall) { in conference() method in ConnectionServiceWrapper
1489 mServiceInterface.conference(callId, otherCallId, Log.getExternalSession()); in conference()
DCall.java2229 mConnectionService.conference(this, otherCall); in conferenceWith()
DCallsManager.java1937 public void conference(Call call, Call otherCall) {
/packages/apps/Dialer/java/com/android/dialer/glidephotomanager/
Dphoto_info.proto48 // Whether to show conference call icon instead of contact icon.
/packages/apps/Dialer/java/com/android/dialer/logging/
Dscreen_event.proto55 // management of individual calls within the conference.
/packages/apps/Dialer/java/com/android/incallui/call/
DTelecomAdapter.java94 call.conference(conferenceable.get(0)); in merge()

12