Searched refs:RemoteConnection (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/telecomm/java/android/telecom/
H A DRemoteConnection.java46 public final class RemoteConnection { class
49 * Callback base class for {@link RemoteConnection}.
53 * Invoked when the state of this {@code RemoteConnection} has changed. See
56 * @param connection The {@code RemoteConnection} invoking this method.
57 * @param state The new state of the {@code RemoteConnection}.
59 public void onStateChanged(RemoteConnection connection, int state) {}
62 * Invoked when this {@code RemoteConnection} is disconnected.
64 * @param connection The {@code RemoteConnection} invoking this method.
69 RemoteConnection connection,
73 * Invoked when this {@code RemoteConnection} i
594 RemoteConnection( method in class:RemoteConnection
607 RemoteConnection(String callId, IConnectionService connectionService, method in class:RemoteConnection
635 RemoteConnection(DisconnectCause disconnectCause) { method in class:RemoteConnection
[all...]
H A DRemoteConference.java38 * {@link RemoteConnection.Callback}.
68 * Invoked when a {@link RemoteConnection} is added to the conference call.
71 * @param connection The {@link RemoteConnection} being added.
73 public void onConnectionAdded(RemoteConference conference, RemoteConnection connection) {}
76 * Invoked when a {@link RemoteConnection} is removed from the conference call.
79 * @param connection The {@link RemoteConnection} being removed.
81 public void onConnectionRemoved(RemoteConference conference, RemoteConnection connection) {}
95 * Invoked when the set of {@link RemoteConnection}s which can be added to this conference
99 * @param conferenceableConnections The list of conferenceable {@link RemoteConnection}s.
103 List<RemoteConnection> conferenceableConnection
[all...]
H A DRemoteConnectionManager.java53 public RemoteConnection createRemoteConnection(
76 public void conferenceRemoteConnections(RemoteConnection a, RemoteConnection b) {
H A DRemoteConnectionService.java46 private static final RemoteConnection NULL_CONNECTION =
47 new RemoteConnection("NULL", null, (ConnectionRequest) null);
58 RemoteConnection connection =
80 List<RemoteConnection> conferenceable = new ArrayList<>();
161 RemoteConnection connection =
194 RemoteConnection c = mConnectionById.get(id);
251 RemoteConnection.VideoProvider remoteVideoProvider = null;
253 remoteVideoProvider = new RemoteConnection.VideoProvider(videoProvider);
298 List<RemoteConnection> conferenceable = new ArrayList<>();
317 RemoteConnection remoteConnctio
[all...]
H A DConnectionService.java858 * Ask some other {@code ConnectionService} to create a {@code RemoteConnection} given an
869 public final RemoteConnection createRemoteIncomingConnection(
877 * Ask some other {@code ConnectionService} to create a {@code RemoteConnection} given an
888 public final RemoteConnection createRemoteOutgoingConnection(
897 * {@link RemoteConnection}s should be merged into a conference call.
906 RemoteConnection remoteConnection1,
907 RemoteConnection remoteConnection2) {
1075 * Indicates that a remote conference has been created for existing {@link RemoteConnection}s.
1090 public void onRemoteExistingConnectionAdded(RemoteConnection connection) {}
1105 void addRemoteExistingConnection(RemoteConnection remoteConnectio
[all...]

Completed in 10 milliseconds