Searched defs:conference (Results 1 - 22 of 22) sorted by relevance

/frameworks/base/telecomm/java/android/telecom/
H A DInCallAdapter.java210 * Instructs Telecom to conference the specified call.
215 public void conference(String callId, String otherCallId) { method in class:InCallAdapter
217 mAdapter.conference(callId, otherCallId);
223 * Instructs Telecom to split the specified call from any conference call with which it may be
237 * Instructs Telecom to merge child calls of the specified conference call.
247 * Instructs Telecom to swap the child calls of the specified conference call.
H A DRemoteConference.java35 * 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 DConference.java38 * Represents a conference call which can contain any number of {@link Connection} objects.
43 * Used to indicate that the conference connection time is not specified. If not specified,
50 public void onStateChanged(Conference conference, int oldState, int newState) {} argument
51 public void onDisconnected(Conference conference, DisconnectCause disconnectCause) {} argument
52 public void onConnectionAdded(Conference conference, Connection connection) {} argument
53 public void onConnectionRemoved(Conference conference, Connection connection) {} argument
55 Conference conference, List<Connection> conferenceableConnections) {}
56 public void onDestroyed(Conference conference) {} argument
58 Conference conference, int connectionCapabilities) {}
60 Conference conference, in
54 onConferenceableConnectionsChanged( Conference conference, List<Connection> conferenceableConnections) argument
57 onConnectionCapabilitiesChanged( Conference conference, int connectionCapabilities) argument
59 onConnectionPropertiesChanged( Conference conference, int connectionProperties) argument
63 onStatusHintsChanged(Conference conference, StatusHints statusHints) argument
[all...]
H A DConnectionService.java439 public void conference(String callId1, String callId2, Session.Info sessionInfo) {
874 conference(callId1, callId2);
1023 public void onStateChanged(Conference conference, int oldState, int newState) {
1024 String id = mIdByConference.get(conference);
1039 public void onDisconnected(Conference conference, DisconnectCause disconnectCause) {
1040 String id = mIdByConference.get(conference);
1045 public void onConnectionAdded(Conference conference, Connection connection) {
1049 public void onConnectionRemoved(Conference conference, Connection connection) {
1054 Conference conference, List<Connection> conferenceableConnections) {
1056 mIdByConference.get(conference),
1540 private void conference(String callId1, String callId2) { method in class:ConnectionService
1804 addConference(Conference conference) argument
1865 addExistingConnection(PhoneAccountHandle phoneAccountHandle, Connection connection, Conference conference) argument
2060 onRemoteConferenceAdded(RemoteConference conference) argument
2071 containsConference(Conference conference) argument
2141 addConferenceInternal(Conference conference) argument
2166 removeConference(Conference conference) argument
[all...]
H A DRemoteConnection.java185 * 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 DCall.java224 * 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}
360 * Whether the call is currently a conference.
365 * Whether the call is a generic conference, where we do not know the precise state of
366 * participants in the conference (eg. on CDMA).
1269 * Instructs this {@code Call} to enter a conference.
1271 * @param callToConferenceWith The other call with which to conference.
1273 public void conference(Cal method in class:Call
[all...]
H A DConnection.java86 * Where a {@code Connection} supports conference calling {@link #onSeparate()} should be
160 * Connections within a conference can be merged. A {@link ConnectionService} has the option to
163 * capability allows a merge button to be shown while the conference is in the foreground
171 * Connections within a conference can be swapped between foreground and background.
190 * Connection supports conference management. This capability only applies to
279 * For a conference, indicates the conference will not have child connections.
281 * An example of a conference with child connections is a GSM conference call, where the radio
282 * retains connections to the individual participants of the conference
817 onConferenceChanged(Connection c, Conference conference) argument
2400 setConference(Conference conference) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedGsmCallState.java428 ret = conference();
607 conference() { method in class:SimulatedGsmCallState
H A DSimulatedCommands.java691 public void conference (Message result) { method in class:SimulatedCommands
H A DSimulatedCommandsVerifier.java715 public void conference(Message result) { method in class:SimulatedCommandsVerifier
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaCallTracker.java293 // 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));
1395 // The conference merge failed, so notify listeners. Ultimately this bubbles up
H A DCallManager.java828 * 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 DPhoneInternalInterface.java303 * Whether or not the phone can conference in the current phone
305 * @return true if the phone can conference; false otherwise.
318 void conference() throws CallStateException; method in interface:PhoneInternalInterface
H A DGsmCdmaPhone.java761 public void conference() { method in class:GsmCdmaPhone
763 logd("conference() - delegated to IMS phone");
765 mImsPhone.conference();
772 mCT.conference();
775 loge("conference: not possible in CDMA");
959 conference();
H A DCommandsInterface.java932 void conference (Message result); method in interface:CommandsInterface
H A DRIL.java1045 public void conference(Message result) { method in class:RIL
1054 radioProxy.conference(rr.mSerial);
1056 handleRadioProxyExceptionForRR(rr, "conference", e);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java242 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 DSipCommandInterface.java139 public void conference (Message result) { method in class:SipCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhone.java319 public void conference() { method in class:ImsPhone
320 mCT.conference();
491 conference();
H A DImsPhoneCallTracker.java1313 conference() { method in class:ImsPhoneCallTracker
1316 log("conference no foreground ims call");
1322 log("conference no background ims call");
1327 log("conference: skip; foreground call already in process of merging.");
1332 log("conference: skip; background call already in process of merging.");
1344 log("conference - using connect time = " + conferenceConnectTime);
1346 log("conference - bg call connect time is 0; using fg = " + foregroundConnectTime);
1349 log("conference - fg call connect time is 0; using bg = " + backgroundConnectTime);
1366 log("conference: fgCallId=" + foregroundId + ", bgCallId=" + backgroundId);
1371 log("conference "
[all...]
H A DImsPhoneCommandInterface.java139 public void conference (Message result) { method in class:ImsPhoneCommandInterface
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DPhoneMock.java1121 public void conference() throws CallStateException { method in class:PhoneMock

Completed in 261 milliseconds