/packages/services/Telephony/src/com/android/services/telephony/ |
D | ImsConferenceController.java | 47 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 …]
|
D | TelephonyConnectionService.java | 121 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 …]
|
D | TelephonyConferenceController.java | 109 private boolean isFullConference(Conference conference) { in isFullConference() argument 110 return conference.getConnections().size() >= TELEPHONY_CONFERENCE_MAX_SIZE; in isFullConference()
|
D | TelephonyConnectionServiceProxy.java | 37 Connection connection, Conference conference); in addExistingConnection() argument
|
D | TelephonyConference.java | 101 phone.conference(); in onMerge()
|
D | ImsConference.java | 491 phone.conference(); in onMerge()
|
D | TelephonyConnection.java | 1014 getPhone().conference(); in performConference()
|
/packages/apps/Dialer/java/com/android/dialer/simulator/impl/ |
D | SimulatorConferenceCreator.java | 151 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 …]
|
D | SimulatorConnectionsBankImpl.java | 123 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()
|
D | SimulatorConference.java | 182 void onEvent(@NonNull SimulatorConference conference, @NonNull Event event); in onEvent() argument
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | CallExtrasTest.java | 365 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 …]
|
D | ConnectionServiceFixture.java | 318 public void conference(String conferenceCallId, String callId, in conference() method in ConnectionServiceFixture.FakeConnectionService 320 mConnectionServiceDelegateAdapter.conference(conferenceCallId, callId, info); in conference()
|
D | BasicCallTests.java | 655 mInCallServiceFixtureX.getInCallAdapter().conference( in testAddCallToConference1() 673 .conference(callId3.mCallId, conferenceCall.getId()); in testAddCallToConference2()
|
D | TelecomSystemTest.java | 393 inCallAdapter.conference(callId1.mCallId, callId2.mCallId); in makeConferenceCall()
|
D | BluetoothPhoneServiceTest.java | 771 verify(mMockCallsManager).conference(activeCall, conferenceableCall); in testProcessChldAddHeldToConf()
|
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/ |
D | TestConnectionManager.java | 252 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/ |
D | HfpClientConnection.java | 136 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/ |
D | InCallAdapter.java | 322 public void conference(String callId, String otherCallId) { in conference() method in InCallAdapter 331 mCallsManager.conference(call, otherCall); in conference()
|
D | BluetoothPhoneServiceImpl.java | 552 mCallsManager.conference(activeCall, conferenceable.get(0)); in processChld()
|
D | ConnectionServiceWrapper.java | 1483 void conference(final Call call, Call otherCall) { in conference() method in ConnectionServiceWrapper 1489 mServiceInterface.conference(callId, otherCallId, Log.getExternalSession()); in conference()
|
D | Call.java | 2229 mConnectionService.conference(this, otherCall); in conferenceWith()
|
D | CallsManager.java | 1937 public void conference(Call call, Call otherCall) {
|
/packages/apps/Dialer/java/com/android/dialer/glidephotomanager/ |
D | photo_info.proto | 48 // Whether to show conference call icon instead of contact icon.
|
/packages/apps/Dialer/java/com/android/dialer/logging/ |
D | screen_event.proto | 55 // management of individual calls within the conference.
|
/packages/apps/Dialer/java/com/android/incallui/call/ |
D | TelecomAdapter.java | 94 call.conference(conferenceable.get(0)); in merge()
|