Home
last modified time | relevance | path

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

12

/frameworks/base/telecomm/java/android/telecom/
DRemoteConference.java56 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 …]
DConnectionService.java614 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 …]
DRemoteConnectionService.java206 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 …]
DConference.java56 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
DRemoteConnection.java216 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()
DInCallAdapter.java308 public void conference(String callId, String otherCallId) { in conference() method in InCallAdapter
310 mAdapter.conference(callId, otherCallId); in conference()
DRemoteConnectionManager.java79 a.getConnectionService().conference(a.getId(), b.getId(), null /*Session.Info*/); in conferenceRemoteConnections()
DConnection.java1097 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()
DConnectionServiceAdapter.java106 ParcelableConference conference) { in handleCreateConferenceComplete() argument
109 adapter.handleCreateConferenceComplete(id, request, conference, in handleCreateConferenceComplete()
DConnectionServiceAdapterServant.java398 ParcelableConference conference,
403 args.arg3 = conference;
DCall.java1739 public void conference(Call callToConferenceWith) { in conference() method in Call
1741 mInCallAdapter.conference(mTelecomCallId, callToConferenceWith.mTelecomCallId); in conference()
/frameworks/opt/net/ims/
DREADME.txt56 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/
DIInCallAdapter.aidl66 void conference(String callId, String otherCallId); in conference() method
DIConnectionService.aidl104 void conference(String conferenceCallId, String callId, in Session.Info sessionInfo); in conference() method
DIConnectionServiceAdapter.aidl78 void addConferenceCall(String callId, in ParcelableConference conference, in addConferenceCall() argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DSimulatedGsmCallState.java431 ret = conference(); in onChld()
615 conference() { in conference() method in SimulatedGsmCallState
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DPhoneInternalInterface.java349 void conference() throws CallStateException; in conference() method
DCallManager.java730 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/
Daudioattributes.proto75 // communication, such as a VoIP communication or video-conference.
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneTest.java272 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/
DSipPhone.java250 public void conference() throws CallStateException { in conference() method in SipPhone
263 public void conference(Call that) throws CallStateException { in conference() method in SipPhone
DSipCommandInterface.java156 public void conference (Message result) { in conference() method in SipCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCommandInterface.java156 public void conference (Message result) { in conference() method in ImsPhoneCommandInterface
DImsPhone.java553 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/
DGSMPhoneTest.java.broken694 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();

12