Lines Matching refs:RemoteConnection
48 private static final RemoteConnection NULL_CONNECTION =
49 new RemoteConnection("NULL", null, (ConnectionRequest) null);
61 RemoteConnection connection =
84 List<RemoteConnection> conferenceable = new ArrayList<>();
198 RemoteConnection connection =
238 RemoteConnection c = mConnectionById.get(id);
310 RemoteConnection.VideoProvider remoteVideoProvider = null;
312 remoteVideoProvider = new RemoteConnection.VideoProvider(videoProvider,
360 List<RemoteConnection> conferenceable = new ArrayList<>();
385 RemoteConnection remoteConnection = new RemoteConnection(callId,
408 remoteConnection.registerCallback(new RemoteConnection.Callback() {
410 public void onDestroyed(RemoteConnection connection) {
534 for (RemoteConnection c : mConnectionById.values()) {
549 private final Map<String, RemoteConnection> mConnectionById = new HashMap<>();
551 private final Set<RemoteConnection> mPendingConnections = new HashSet<>();
566 final RemoteConnection createRemoteConnection( in createRemoteConnection()
594 RemoteConnection connection = in createRemoteConnection()
595 new RemoteConnection(id, mOutgoingConnectionServiceRpc, newRequest); in createRemoteConnection()
605 connection.registerCallback(new RemoteConnection.Callback() { in createRemoteConnection()
607 public void onDestroyed(RemoteConnection connection) { in createRemoteConnection()
614 return RemoteConnection.failure( in createRemoteConnection()
655 private RemoteConnection findConnectionForAction( in findConnectionForAction()