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.java36 * Represents a conference call which can contain any number of {@link Connection} objects.
41 * Used to indicate that the conference connection time is not specified. If not specified,
48 public void onStateChanged(Conference conference, int oldState, int newState) {} argument
49 public void onDisconnected(Conference conference, DisconnectCause disconnectCause) {} argument
50 public void onConnectionAdded(Conference conference, Connection connection) {} argument
51 public void onConnectionRemoved(Conference conference, Connection connection) {} argument
53 Conference conference, List<Connection> conferenceableConnections) {}
54 public void onDestroyed(Conference conference) {} argument
56 Conference conference, int connectionCapabilities) {}
58 Conference conference, in
52 onConferenceableConnectionsChanged( Conference conference, List<Connection> conferenceableConnections) argument
55 onConnectionCapabilitiesChanged( Conference conference, int connectionCapabilities) argument
57 onConnectionPropertiesChanged( Conference conference, int connectionProperties) argument
61 onStatusHintsChanged(Conference conference, StatusHints statusHints) argument
[all...]
H A DConnectionService.java222 public void conference(String callId1, String callId2) {
384 conference(callId1, callId2);
445 public void onStateChanged(Conference conference, int oldState, int newState) {
446 String id = mIdByConference.get(conference);
461 public void onDisconnected(Conference conference, DisconnectCause disconnectCause) {
462 String id = mIdByConference.get(conference);
467 public void onConnectionAdded(Conference conference, Connection connection) {
471 public void onConnectionRemoved(Conference conference, Connection connection) {
476 Conference conference, List<Connection> conferenceableConnections) {
478 mIdByConference.get(conference),
885 private void conference(String callId1, String callId2) { method in class:ConnectionService
1121 addConference(Conference conference) argument
1310 onRemoteConferenceAdded(RemoteConference conference) argument
1321 containsConference(Conference conference) argument
1391 addConferenceInternal(Conference conference) argument
1416 removeConference(Conference conference) argument
[all...]
H A DCall.java127 * Calls within a conference can be merged. A {@link ConnectionService} has the option to
130 * capability allows a merge button to be shown while the conference call is in the foreground
138 * Calls within a conference can be swapped between foreground and background.
157 * Call supports conference call management. This capability only applies to {@link Conference}
263 * Whether the call is currently a conference.
268 * Whether the call is a generic conference, where we do not know the precise state of
269 * participants in the conference (eg. on CDMA).
965 * Instructs this {@code Call} to enter a conference.
967 * @param callToConferenceWith The other call with which to conference.
969 public void conference(Cal method in class:Call
[all...]
H A DRemoteConnection.java183 * may be asked to create a conference has changed.
187 * {@code RemoteConnection} may be asked to create a conference.
209 * @param conference The {@code RemoteConference} of which this {@code RemoteConnection} is
214 RemoteConference conference) {}
1045 * successfully asked to create a conference with.
1341 void setConference(final RemoteConference conference) { argument
1342 if (mConference != conference) {
1343 mConference = conference;
1350 callback.onConferenceChanged(connection, conference);
212 onConferenceChanged( RemoteConnection connection, RemoteConference conference) argument
H A DConnection.java77 * Where a {@code Connection} supports conference calling {@link #onSeparate()} should be
151 * Connections within a conference can be merged. A {@link ConnectionService} has the option to
154 * capability allows a merge button to be shown while the conference is in the foreground
162 * Connections within a conference can be swapped between foreground and background.
181 * Connection supports conference management. This capability only applies to
270 * For a conference, indicates the conference will not have child connections.
272 * An example of a conference with child connections is a GSM conference call, where the radio
273 * retains connections to the individual participants of the conference
732 onConferenceChanged(Connection c, Conference conference) argument
2102 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.java681 public void conference (Message result) { method in class:SimulatedCommands
H A DSimulatedCommandsVerifier.java713 public void conference(Message result) { method in class:SimulatedCommandsVerifier
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaCallTracker.java285 // multi-way conference calls due to DIAL being sent out before SWITCH is processed
572 public void conference() { method in class:GsmCdmaCallTracker
574 mCi.conference(obtainCompleteMessage(EVENT_CONFERENCE_RESULT));
1378 // 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.java312 * Whether or not the phone can conference in the current phone
314 * @return true if the phone can conference; false otherwise.
327 void conference() throws CallStateException; method in interface:PhoneInternalInterface
H A DGsmCdmaPhone.java763 public void conference() { method in class:GsmCdmaPhone
765 logd("conference() - delegated to IMS phone");
767 mImsPhone.conference();
774 mCT.conference();
777 loge("conference: not possible in CDMA");
961 conference();
H A DCommandsInterface.java926 void conference (Message result); method in interface:CommandsInterface
H A DRIL.java1177 conference (Message result) { method in class:RIL
/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.java137 public void conference (Message result) { method in class:SipCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhone.java312 public void conference() { method in class:ImsPhone
313 mCT.conference();
441 conference();
H A DImsPhoneCallTracker.java844 conference() { method in class:ImsPhoneCallTracker
845 if (DBG) log("conference");
849 log("conference no foreground ims call");
855 log("conference no background ims call");
867 log("conference - using connect time = " + conferenceConnectTime);
869 log("conference - bg call connect time is 0; using fg = " + foregroundConnectTime);
872 log("conference - fg call connect time is 0; using bg = " + backgroundConnectTime);
884 log("conference " + e.getMessage());
1913 // Check if the merge was requested by an existing conference call. In that
1919 log("onCallMerged :: Merge requested by existing conference
[all...]
H A DImsPhoneCommandInterface.java137 public void conference (Message result) { method in class:ImsPhoneCommandInterface
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DPhoneMock.java1118 public void conference() throws CallStateException { method in class:PhoneMock

Completed in 214 milliseconds