Lines Matching refs:conference

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. Another example is an
285 * IMS conference call where conference event package functionality is supported; in this case
286 * the conference server ensures the radio is aware of the participants in the conference, which
289 * An example of a conference with no child connections is an IMS conference call with no
290 * conference event package support. Such a conference is represented by the radio as a single
291 * connection to the IMS conference server.
293 * Indicating whether a conference has children or not is important to help user interfaces
294 * visually represent a conference. A conference with no children, for example, will have the
295 * conference connection shown in the list of calls on a Bluetooth device, where if the
296 * conference has children, only the children will be shown in the list of calls on a Bluetooth
347 * Whether the call is a generic conference, where we do not know the precise state of
348 * participants in the conference (eg. on CDMA).
388 * Indicates that the connection represents a downgraded IMS conference.
472 * connection/conference added via
537 * Connection into a conference has begun.
547 * Connection into a conference has completed.
827 public void onConferenceChanged(Connection c, Conference conference) {}
1827 * @return The conference that this connection is a part of. Null if it is not part of any
1828 * conference.
1852 * start time of the conference.
1865 * start time of the conference.
2287 * when a conference call becomes active on this connection.
2300 * when a conference call becomes active on this connection.
2327 * @param conferenceableConnections The set of connections this connection can conference with.
2359 Conference conference = (Conference) c;
2360 conference.addListener(mConferenceDeathListener);
2408 * Sets the conference that this connection is a part of. This will fail if the connection is
2409 * already part of a conference. {@link #resetConference} to un-set the conference first.
2411 * @param conference The conference.
2412 * @return {@code true} if the conference was successfully set.
2415 public final boolean setConference(Conference conference) {
2417 // We check to see if it is already part of another conference.
2419 mConference = conference;
2420 if (mConnectionService != null && mConnectionService.containsConference(conference)) {
2429 * Resets the conference that this connection is a part of.
2703 * Notifies this Connection of a request to disconnect a participant of the conference managed
2712 * Notifies this Connection of a request to separate from its parent conference.
3059 Conference conference = (Conference) c;
3060 conference.removeListener(mConferenceDeathListener);
3095 * Notifies listeners of a change to conference participant(s).
3108 * Notifies listeners that a conference call has been started.
3119 * be a part of a conference call.
3121 * conference call, {@code false} otherwise.