HomeSort by relevance Sort by last modified time
    Searched refs:clientSession (Results 1 - 17 of 17) sorted by null

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLSessionTest.java 54 SSLSession s = clientSession;
64 SSLSession s = clientSession;
74 Principal p1 = clientSession.getPeerPrincipal();
85 assertTrue(clientSession.getApplicationBufferSize() > 0);
106 assertEquals(expectedCipherSuite, clientSession.getCipherSuite());
115 long sessionTime = clientSession.getCreationTime();
125 byte[] id = clientSession.getId();
128 assertEquals(clientSession, sess);
137 long sessionTime = clientSession.getLastAccessedTime();
150 Certificate[] certs = clientSession.getLocalCertificates()
    [all...]
  /external/chromium_org/remoting/webapp/
client_screen.js 22 * @type {remoting.ClientSession} The client session object, set once the
25 remoting.clientSession = null;
43 if (remoting.clientSession) {
44 remoting.clientSession.onResize();
54 if (remoting.clientSession) {
55 remoting.clientSession.pauseVideo(
66 if (!remoting.clientSession) {
69 if (remoting.clientSession.getMode() == remoting.ClientSession.Mode.IT2ME) {
74 remoting.clientSession.disconnect(remoting.Error.NONE)
    [all...]
smart_reconnector.js 11 * |clientSession| to determine if a reconnection is needed. It then calls into
24 * @param {remoting.ClientSession} clientSession This represents the current
29 remoting.SmartReconnector = function(connector, clientSession) {
34 this.clientSession_ = clientSession;
51 clientSession.addEventListener(
52 remoting.ClientSession.Events.stateChanged,
54 clientSession.addEventListener(
55 remoting.ClientSession.Events.videoChannelStateChanged,
84 * @param {remoting.ClientSession.StateEvent} even
    [all...]
gnubby_auth_handler.js 18 * @param {!remoting.ClientSession} clientSession The client session to send
21 remoting.GnubbyAuthHandler = function(clientSession) {
22 this.clientSession_ = clientSession;
hangout_session.js 46 * @param {remoting.ClientSession.State} state
49 var State = remoting.ClientSession.State;
71 * remoting.clientSession does not exist until the session is connected.
73 * state changes until we cleanup clientSession and sessionConnector.
options_menu.js 37 * @type {remoting.ClientSession}
63 * @param {remoting.ClientSession} clientSession The active session, or null if
66 remoting.OptionsMenu.prototype.setClientSession = function(clientSession) {
67 this.clientSession_ = clientSession;
73 this.clientSession_.getMode() == remoting.ClientSession.Mode.IT2ME;
toolbar.js 131 * @param {remoting.ClientSession} clientSession The active session, or null if
134 remoting.Toolbar.prototype.setClientSession = function(clientSession) {
137 clientSession ? clientSession.getHostDisplayName() : "";
window_frame.js 21 * @type {remoting.ClientSession}
107 * @param {remoting.ClientSession} clientSession The client session, or null if
110 remoting.WindowFrame.prototype.setClientSession = function(clientSession) {
111 this.clientSession_ = clientSession;
114 this.title_.innerText = clientSession.getHostDisplayName();
115 windowTitle.innerText = clientSession.getHostDisplayName() + ' - ' +
cast_extension_handler.js 25 * @param {!remoting.ClientSession} clientSession The client session to send
28 remoting.CastExtensionHandler = function(clientSession) {
30 this.clientSession_ = clientSession;
clipboard.js 81 if (!remoting.clientSession) {
102 remoting.clientSession.sendClipboardItem(
remoting.js 357 if (!remoting.clientSession ||
358 remoting.clientSession.getMode() == remoting.ClientSession.Mode.ME2ME) {
client_plugin_impl.js 143 * @type {remoting.ClientSession.PerfStats}
146 this.perfStats_ = new remoting.ClientSession.PerfStats();
361 remoting.ClientSession.Capability.SEND_INITIAL_RESOLUTION);
366 remoting.ClientSession.Capability.RATE_LIMIT_RESIZE_REQUESTS);
370 remoting.ClientSession.Capability.VIDEO_RECORDER);
376 remoting.ClientSession.Capability.CAST);
396 var state = remoting.ClientSession.State.fromString(
398 var error = remoting.ClientSession.ConnectionError.fromString(
420 /** @type {remoting.ClientSession.PerfStats} */ message.data;
430 if (remoting.clientSession) {
    [all...]
  /external/chromium_org/remoting/webapp/browser_test/
bump_scroll_browser_test.js 21 this.defineEvents(Object.keys(remoting.ClientSession.Events));
82 remoting.clientSession.pluginWidthForBumpScrollTesting =
84 remoting.clientSession.pluginHeightForBumpScrollTesting =
91 remoting.clientSession.pluginWidthForBumpScrollTesting =
93 remoting.clientSession.pluginHeightForBumpScrollTesting =
101 remoting.clientSession.pluginWidthForBumpScrollTesting =
103 remoting.clientSession.pluginHeightForBumpScrollTesting =
159 var STARTED = remoting.ClientSession.Events.bumpScrollStarted;
160 var STOPPED = remoting.ClientSession.Events.bumpScrollStopped;
218 * @param {browserTest.FakeClientSession=} opt_clientSession ClientSession-lik
    [all...]
mock_session_connector.js 36 this.mode_ = remoting.ClientSession.Mode.ME2ME;
46 this.mode_ = remoting.ClientSession.Mode.ME2ME;
51 base.debug.assert(this.mode_ == remoting.ClientSession.Mode.ME2ME);
91 var clientSession = new remoting.ClientSession(
98 if (event.current == remoting.ClientSession.State.CONNECTED) {
99 this.onConnected_(clientSession);
103 clientSession.addEventListener(
104 remoting.ClientSession.Events.stateChanged,
106 clientSession.createPluginAndConnect(this.onExtensionMessage_)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMnsObexClient.java 31 import javax.obex.ClientSession;
53 private ClientSession mClientSession;
218 mClientSession = new ClientSession(mTransport);
272 ClientSession clientSession = mClientSession;
274 if ((!mConnected) || (clientSession == null)) {
303 putOperation = (ClientOperation)clientSession.put(request);
  /frameworks/av/media/libstagefright/foundation/
ANetworkSession.cpp     [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java     [all...]

Completed in 343 milliseconds