/frameworks/base/telecomm/java/android/telecom/ |
H A D | RemoteConference.java | 35 * A conference provided to a {@link ConnectionService} by another {@code ConnectionService} through 37 * can be used to control the conference call or monitor changes through 52 * @param conference The {@code RemoteConference} invoking this method. 56 public void onStateChanged(RemoteConference conference, int oldState, int newState) {} argument 61 * @param conference The {@code RemoteConference} invoking this method. 63 * conference. 65 public void onDisconnected(RemoteConference conference, DisconnectCause disconnectCause) {} argument 68 * Invoked when a {@link RemoteConnection} is added to the conference call. 70 * @param conference The {@code RemoteConference} invoking this method. 73 public void onConnectionAdded(RemoteConference conference, RemoteConnectio argument 81 onConnectionRemoved(RemoteConference conference, RemoteConnection connection) argument 90 onConnectionCapabilitiesChanged( RemoteConference conference, int connectionCapabilities) argument 101 onConnectionPropertiesChanged( RemoteConference conference, int connectionProperties) argument 113 onConferenceableConnectionsChanged( RemoteConference conference, List<RemoteConnection> conferenceableConnections) argument 123 onDestroyed(RemoteConference conference) argument 131 onExtrasChanged(RemoteConference conference, @Nullable Bundle extras) argument [all...] |
H A D | ConnectionService.java | 493 public void conference(String callId1, String callId2, Session.Info sessionInfo) { 989 conference(callId1, callId2); 1157 public void onStateChanged(Conference conference, int oldState, int newState) { 1158 String id = mIdByConference.get(conference); 1173 public void onDisconnected(Conference conference, DisconnectCause disconnectCause) { 1174 String id = mIdByConference.get(conference); 1179 public void onConnectionAdded(Conference conference, Connection connection) { 1183 public void onConnectionRemoved(Conference conference, Connection connection) { 1188 Conference conference, List<Connection> conferenceableConnections) { 1190 mIdByConference.get(conference), 1711 private void conference(String callId1, String callId2) { method in class:ConnectionService 1987 addConference(Conference conference) argument 2059 addExistingConnection(PhoneAccountHandle phoneAccountHandle, Connection connection, Conference conference) argument 2373 onConferenceAdded(Conference conference) argument 2379 onConferenceRemoved(Conference conference) argument 2391 onRemoteConferenceAdded(RemoteConference conference) argument 2416 containsConference(Conference conference) argument 2489 addConferenceInternal(Conference conference) argument 2514 removeConference(Conference conference) argument [all...] |
H A D | RemoteConnectionService.java | 193 // 'connection' is being split from its conference 198 RemoteConference conference = 200 if (conference != NULL_CONFERENCE) { 201 conference.addConnection(connection); 211 // in the underlying connection or conference objects 225 RemoteConference conference = new RemoteConference(callId, 231 conference.addConnection(c); 234 if (conference.getConnections().size() == 0) { 235 // A conference was created, but none of its connections are ones that have been 242 conference [all...] |
H A D | Conference.java | 37 * Represents a conference call which can contain any number of {@link Connection} objects. 42 * Used to indicate that the conference connection time is not specified. If not specified, 49 public void onStateChanged(Conference conference, int oldState, int newState) {} argument 50 public void onDisconnected(Conference conference, DisconnectCause disconnectCause) {} argument 51 public void onConnectionAdded(Conference conference, Connection connection) {} argument 52 public void onConnectionRemoved(Conference conference, Connection connection) {} argument 54 Conference conference, List<Connection> conferenceableConnections) {} 55 public void onDestroyed(Conference conference) {} argument 57 Conference conference, int connectionCapabilities) {} 59 Conference conference, in 53 onConferenceableConnectionsChanged( Conference conference, List<Connection> conferenceableConnections) argument 56 onConnectionCapabilitiesChanged( Conference conference, int connectionCapabilities) argument 58 onConnectionPropertiesChanged( Conference conference, int connectionProperties) argument 62 onStatusHintsChanged(Conference conference, StatusHints statusHints) argument [all...] |
H A D | RemoteConnectionManager.java | 79 a.getConnectionService().conference(a.getId(), b.getId(), null /*Session.Info*/); 83 Log.w(this, "Request to conference incompatible remote connections (%s,%s) (%s,%s)",
|
H A D | InCallAdapter.java | 240 * Instructs Telecom to conference the specified call. 245 public void conference(String callId, String otherCallId) { method in class:InCallAdapter 247 mAdapter.conference(callId, otherCallId); 253 * Instructs Telecom to split the specified call from any conference call with which it may be 267 * Instructs Telecom to merge child calls of the specified conference call. 277 * Instructs Telecom to swap the child calls of the specified conference call.
|
H A D | Connection.java | 88 * Where a {@code Connection} supports conference calling {@link #onSeparate()} should be 162 * Connections within a conference can be merged. A {@link ConnectionService} has the option to 165 * capability allows a merge button to be shown while the conference is in the foreground 173 * Connections within a conference can be swapped between foreground and background. 192 * Connection supports conference management. This capability only applies to 281 * For a conference, indicates the conference will not have child connections. 283 * An example of a conference with child connections is a GSM conference call, where the radio 284 * retains connections to the individual participants of the conference 827 onConferenceChanged(Connection c, Conference conference) argument 2415 setConference(Conference conference) argument [all...] |
H A D | RemoteConnection.java | 185 * may be asked to create a conference has changed. 189 * {@code RemoteConnection} may be asked to create a conference. 211 * @param conference The {@code RemoteConference} of which this {@code RemoteConnection} is 216 RemoteConference conference) {} 1148 * successfully asked to create a conference with. 1444 void setConference(final RemoteConference conference) { argument 1445 if (mConference != conference) { 1446 mConference = conference; 1453 callback.onConferenceChanged(connection, conference); 214 onConferenceChanged( RemoteConnection connection, RemoteConference conference) argument
|
H A D | Call.java | 224 * Calls within a conference can be merged. A {@link ConnectionService} has the option to 227 * capability allows a merge button to be shown while the conference call is in the foreground 235 * Calls within a conference can be swapped between foreground and background. 254 * Call supports conference call management. This capability only applies to {@link Conference} 363 * Whether the call is currently a conference. 368 * Whether the call is a generic conference, where we do not know the precise state of 369 * participants in the conference (eg. on CDMA). 1404 * Instructs this {@code Call} to enter a conference. 1406 * @param callToConferenceWith The other call with which to conference. 1408 public void conference(Cal method in class:Call [all...] |
/frameworks/base/telecomm/java/com/android/internal/telecom/ |
H A D | IInCallAdapter.aidl | 56 void conference(String callId, String otherCallId);
|
H A D | IConnectionService.aidl | 83 void conference(String conferenceCallId, String callId, in Session.Info sessionInfo);
|
H A D | IConnectionServiceAdapter.aidl | 72 void addConferenceCall(String callId, in ParcelableConference conference,
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/ |
H A D | SimulatedGsmCallState.java | 428 ret = conference(); 607 conference() { method in class:SimulatedGsmCallState
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
H A D | PhoneInternalInterface.java | 351 * Whether or not the phone can conference in the current phone 353 * @return true if the phone can conference; false otherwise. 366 void conference() throws CallStateException; method in interface:PhoneInternalInterface
|
H A D | CallManager.java | 828 * Whether or not the phone can conference in the current phone 830 * @return true if the phone can conference; false otherwise. 848 * Whether or not the phone can conference in the current phone 852 * @return true if the phone can conference; false otherwise. 878 public void conference(Call heldCall) throws CallStateException { method in class:CallManager 882 Rlog.d(LOG_TAG, "conference(" +heldCall + ")"); 889 ((SipPhone) fgPhone).conference(heldCall); 891 fgPhone.conference(); 893 throw(new CallStateException("Can't conference foreground and selected background call")); 896 Rlog.d(LOG_TAG, "conference [all...] |
H A D | GsmCdmaCallTracker.java | 293 // multi-way conference calls due to DIAL being sent out before SWITCH is processed 587 public void conference() { method in class:GsmCdmaCallTracker 589 mCi.conference(obtainCompleteMessage(EVENT_CONFERENCE_RESULT)); 1397 // The conference merge failed, so notify listeners. Ultimately this
|
H A D | CommandsInterface.java | 938 void conference (Message result); method in interface:CommandsInterface
|
H A D | GsmCdmaPhone.java | 757 public void conference() { method in class:GsmCdmaPhone 759 logd("conference() - delegated to IMS phone"); 761 mImsPhone.conference(); 768 mCT.conference(); 771 loge("conference: not possible in CDMA"); 955 conference();
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
H A D | ImsPhoneTest.java | 234 verify(mImsCT).conference(); 314 mImsPhoneUT.conference(); 315 verify(mImsCT).conference();
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
H A D | SipPhone.java | 242 public void conference() throws CallStateException { method in class:SipPhone 250 if (DBG) log("conference: merge fg & bg"); 255 public void conference(Call that) throws CallStateException { method in class:SipPhone
|
H A D | SipCommandInterface.java | 149 public void conference (Message result) { method in class:SipCommandInterface
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
H A D | ImsPhone.java | 372 public void conference() { method in class:ImsPhone 373 mCT.conference(); 544 conference();
|
H A D | ImsPhoneCommandInterface.java | 149 public void conference (Message result) { method in class:ImsPhoneCommandInterface
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
H A D | UsimDataDownloadCommands.java.broken | 270 public void conference(Message result) {
|
H A 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();
|