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

/frameworks/base/telecomm/java/android/telecom/
H A DInCallAdapter.java240 * 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 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.java37 * 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 DConnectionService.java493 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 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}
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...]
H A DConnection.java88 * 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...]
/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.java726 public void conference (Message result) { method in class:SimulatedCommands
H A DSimulatedCommandsVerifier.java727 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));
1397 // The conference merge failed, so notify listeners. Ultimately this
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.java351 * 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 DGsmCdmaPhone.java757 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();
H A DCommandsInterface.java938 void conference (Message result); method in interface:CommandsInterface
H A DRIL.java900 public void conference(Message result) { method in class:RIL
909 radioProxy.conference(rr.mSerial);
911 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.java149 public void conference (Message result) { method in class:SipCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhone.java372 public void conference() { method in class:ImsPhone
373 mCT.conference();
544 conference();
H A DImsPhoneCallTracker.java1353 conference() { method in class:ImsPhoneCallTracker
1356 log("conference no foreground ims call");
1362 log("conference no background ims call");
1367 log("conference: skip; foreground call already in process of merging.");
1372 log("conference: skip; background call already in process of merging.");
1384 log("conference - using connect time = " + conferenceConnectTime);
1386 log("conference - bg call connect time is 0; using fg = " + foregroundConnectTime);
1389 log("conference - fg call connect time is 0; using bg = " + backgroundConnectTime);
1406 log("conference: fgCallId=" + foregroundId + ", bgCallId=" + backgroundId);
1411 log("conference "
[all...]
H A DImsPhoneCommandInterface.java149 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 283 milliseconds