Home | History | Annotate | Download | only in cts

Lines Matching refs:conference

43  * {@link CtsRemoteConnectionService}. Then we create a remote conference on the
45 * object. The onConference method on the managerConnectionService will initiate a remote conference
46 * creation on the remoteConnectionService and once that is completed, we create a local conference
78 fail("The 2 participating calls should contain the conference call as its parent");
81 fail("The conference call should contain the 2 participating calls as its children");
214 public void onStateChanged(RemoteConference conference, int oldState, int newState) {
215 super.onStateChanged(conference, oldState, newState);
216 callbackInvoker.invoke(conference, oldState, newState);
240 public void onDisconnected(RemoteConference conference,
242 super.onDisconnected(conference, disconnectCause);
243 callbackInvoker.invoke(conference, disconnectCause);
267 public void onConnectionAdded(RemoteConference conference,
269 super.onConnectionAdded(conference, connection);
270 callbackInvoker.invoke(conference, connection);
298 public void onConnectionRemoved(RemoteConference conference,
300 super.onConnectionRemoved(conference, connection);
301 callbackInvoker.invoke(conference, connection);
331 RemoteConference conference,
333 super.onConnectionCapabilitiesChanged(conference, connectionCapabilities);
334 callbackInvoker.invoke(conference, connectionCapabilities);
359 RemoteConference conference,
361 super.onConnectionPropertiesChanged(conference, connectionProperties);
362 callbackInvoker.invoke(conference, connectionProperties);
388 RemoteConference conference,
390 super.onConferenceableConnectionsChanged(conference, conferenceableConnections);
391 callbackInvoker.invoke(conference, conferenceableConnections);
422 public void onDestroyed(RemoteConference conference) {
423 super.onDestroyed(conference);
424 callbackInvoker.invoke(conference);
447 public void onExtrasChanged(RemoteConference conference, Bundle extras) {
448 super.onExtrasChanged(conference, extras);
449 callbackInvoker.invoke(conference, extras);
464 MockConference remoteConference, MockConference conference) {
469 for (Connection c: conference.getConnections()) {
475 assertTrue(areBundlesEqual(remoteConferenceObject.getExtras(), conference.getExtras()));
504 * conference creation on the remoteConnectionService instead of this
526 * Now that the remote conference has been created,
527 * let's create a local conference on this ConnectionService.
529 MockConference conference = new MockConference(mConnection1, mConnection2);
530 conference.setRemoteConference(remoteConference);
531 CtsConnectionService.addConferenceToTelecom(conference);
532 conferences.add(conference);
537 * We want the conference to be instantiated on the remoteConnectionService registered
558 MockConference conference = new MockConference(
560 CtsRemoteConnectionService.addConferenceToTelecom(conference);
561 conferences.add(conference);
609 * on the connectionService. We now create a conference on the local two connections
610 * which triggers a creation of conference on the remoteConnectionService via the