/frameworks/base/telecomm/java/android/telecom/ |
D | RemoteConference.java | 56 public void onStateChanged(RemoteConference conference, int oldState, int newState) {} in onStateChanged() argument 65 public void onDisconnected(RemoteConference conference, DisconnectCause disconnectCause) {} in onDisconnected() argument 73 public void onConnectionAdded(RemoteConference conference, RemoteConnection connection) {} in onConnectionAdded() argument 81 public void onConnectionRemoved(RemoteConference conference, RemoteConnection connection) {} in onConnectionRemoved() argument 91 RemoteConference conference, in onConnectionCapabilitiesChanged() argument 102 RemoteConference conference, in onConnectionPropertiesChanged() argument 114 RemoteConference conference, in onConferenceableConnectionsChanged() argument 123 public void onDestroyed(RemoteConference conference) {} in onDestroyed() argument 131 public void onExtrasChanged(RemoteConference conference, @Nullable Bundle extras) {} in onExtrasChanged() argument 168 final RemoteConference conference = this; in setDestroyed() local [all …]
|
D | ConnectionService.java | 614 public void conference(String callId1, String callId2, Session.Info sessionInfo) { 1260 conference(callId1, callId2); 1441 public void onStateChanged(Conference conference, int oldState, int newState) { 1442 String id = mIdByConference.get(conference); 1463 public void onDisconnected(Conference conference, DisconnectCause disconnectCause) { 1464 String id = mIdByConference.get(conference); 1469 public void onConnectionAdded(Conference conference, Connection connection) { 1473 public void onConnectionRemoved(Conference conference, Connection connection) { 1478 Conference conference, List<Connection> conferenceableConnections) { 1480 mIdByConference.get(conference), [all …]
|
D | RemoteConnectionService.java | 206 RemoteConference conference = 208 if (conference != NULL_CONFERENCE) { 209 conference.addConnection(connection); 233 RemoteConference conference = new RemoteConference(callId, 239 conference.addConnection(c); 242 if (conference.getConnections().size() == 0) { 250 conference.setState(parcel.getState()); 251 conference.setConnectionCapabilities(parcel.getConnectionCapabilities()); 252 conference.setConnectionProperties(parcel.getConnectionProperties()); 253 conference.putExtras(parcel.getExtras()); [all …]
|
D | Conference.java | 56 public void onStateChanged(Conference conference, int oldState, int newState) {} in onStateChanged() argument 57 public void onDisconnected(Conference conference, DisconnectCause disconnectCause) {} in onDisconnected() argument 58 public void onConnectionAdded(Conference conference, Connection connection) {} in onConnectionAdded() argument 59 public void onConnectionRemoved(Conference conference, Connection connection) {} in onConnectionRemoved() argument 61 Conference conference, List<Connection> conferenceableConnections) {} in onConferenceableConnectionsChanged() argument 62 public void onDestroyed(Conference conference) {} in onDestroyed() argument 64 Conference conference, int connectionCapabilities) {} in onConnectionCapabilitiesChanged() argument 66 Conference conference, int connectionProperties) {} in onConnectionPropertiesChanged() argument 69 public void onStatusHintsChanged(Conference conference, StatusHints statusHints) {} in onStatusHintsChanged() argument
|
D | RemoteConnection.java | 216 RemoteConference conference) {} in onConferenceChanged() argument 1444 void setConference(final RemoteConference conference) { in setConference() argument 1445 if (mConference != conference) { in setConference() 1446 mConference = conference; in setConference() 1453 callback.onConferenceChanged(connection, conference); in setConference()
|
D | InCallAdapter.java | 308 public void conference(String callId, String otherCallId) { in conference() method in InCallAdapter 310 mAdapter.conference(callId, otherCallId); in conference()
|
D | RemoteConnectionManager.java | 79 a.getConnectionService().conference(a.getId(), b.getId(), null /*Session.Info*/); in conferenceRemoteConnections()
|
D | Connection.java | 1097 public void onConferenceChanged(Connection c, Conference conference) {} in onConferenceChanged() argument 2684 Conference conference = (Conference) c; in setConferenceables() local 2685 conference.addListener(mConferenceDeathListener); in setConferenceables() 2747 public final boolean setConference(Conference conference) { in setConference() argument 2751 mConference = conference; in setConference() 2752 if (mConnectionService != null && mConnectionService.containsConference(conference)) { in setConference() 3427 Conference conference = (Conference) c; in clearConferenceableList() local 3428 conference.removeListener(mConferenceDeathListener); in clearConferenceableList()
|
D | ConnectionServiceAdapter.java | 106 ParcelableConference conference) { in handleCreateConferenceComplete() argument 109 adapter.handleCreateConferenceComplete(id, request, conference, in handleCreateConferenceComplete()
|
D | ConnectionServiceAdapterServant.java | 398 ParcelableConference conference, 403 args.arg3 = conference;
|
D | Call.java | 1739 public void conference(Call callToConferenceWith) { in conference() method in Call 1741 mInCallAdapter.conference(mTelecomCallId, callToConferenceWith.mTelecomCallId); in conference()
|
/frameworks/opt/net/ims/ |
D | README.txt | 56 merged or extended to the conference. 63 It provides the conference information (defined in RFC 4575) for IMS conference call. 97 merged or extended to the conference. 105 the IMS network after merged or extended to the conference.
|
/frameworks/base/telecomm/java/com/android/internal/telecom/ |
D | IInCallAdapter.aidl | 66 void conference(String callId, String otherCallId); in conference() method
|
D | IConnectionService.aidl | 104 void conference(String conferenceCallId, String callId, in Session.Info sessionInfo); in conference() method
|
D | IConnectionServiceAdapter.aidl | 78 void addConferenceCall(String callId, in ParcelableConference conference, in addConferenceCall() argument
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | SimulatedGsmCallState.java | 431 ret = conference(); in onChld() 615 conference() { in conference() method in SimulatedGsmCallState
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | PhoneInternalInterface.java | 349 void conference() throws CallStateException; in conference() method
|
D | CallManager.java | 730 public void conference(Call heldCall) throws CallStateException { in conference() method in CallManager 741 ((SipPhone) fgPhone).conference(heldCall); in conference() 743 fgPhone.conference(); in conference()
|
/frameworks/base/core/proto/android/media/ |
D | audioattributes.proto | 75 // communication, such as a VoIP communication or video-conference.
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
D | ImsPhoneTest.java | 272 verify(mImsCT).conference(); in testHandleInCallMmiCommandMultiparty() 346 mImsPhoneUT.conference(); in testGettersAndPassThroughs() 347 verify(mImsCT).conference(); in testGettersAndPassThroughs()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
D | SipPhone.java | 250 public void conference() throws CallStateException { in conference() method in SipPhone 263 public void conference(Call that) throws CallStateException { in conference() method in SipPhone
|
D | SipCommandInterface.java | 156 public void conference (Message result) { in conference() method in SipCommandInterface
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCommandInterface.java | 156 public void conference (Message result) { in conference() method in ImsPhoneCommandInterface
|
D | ImsPhone.java | 553 public void conference() { in conference() method in ImsPhone 554 mCT.conference(); in conference() 755 conference(); in handleMultipartyIncallSupplementaryService()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
D | GSMPhoneTest.java.broken | 694 mGSMPhone.conference(); 737 // Hangup conference call, ringing call still around 1177 mGSMPhone.conference(); 1187 // at this point, we have an active conference call, with 1287 mGSMPhone.conference();
|