HomeSort by relevance Sort by last modified time
    Searched refs:ClientSession (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/remoting/host/
host_extension_session.h 14 class ClientSession;
16 // Created by an |HostExtension| to store |ClientSession| specific state, and to
22 // Called when the host receives an |ExtensionMessage| for the |ClientSession|
26 ClientSession* client_session,
host_extension.h 14 class ClientSession;
35 ClientSession* client_session) = 0;
chromoting_host.h 66 public ClientSession::EventHandler,
122 // ClientSession::EventHandler implementation.
123 virtual void OnSessionAuthenticating(ClientSession* client) OVERRIDE;
124 virtual bool OnSessionAuthenticated(ClientSession* client) OVERRIDE;
125 virtual void OnSessionChannelsConnected(ClientSession* client) OVERRIDE;
126 virtual void OnSessionClientCapabilities(ClientSession* client) OVERRIDE;
127 virtual void OnSessionAuthenticationFailed(ClientSession* client) OVERRIDE;
128 virtual void OnSessionClosed(ClientSession* session) OVERRIDE;
129 virtual void OnSessionSequenceNumber(ClientSession* session,
132 ClientSession* session
    [all...]
client_session.cc 38 ClientSession::ClientSession(
91 ClientSession::~ClientSession() {
102 void ClientSession::AddExtensionSession(
109 void ClientSession::AddHostCapabilities(const std::string& capabilities) {
121 void ClientSession::NotifyClientResolution(
148 void ClientSession::ControlVideo(const protocol::VideoControl& video_control) {
168 void ClientSession::ControlAudio(const protocol::AudioControl& audio_control) {
179 void ClientSession::SetCapabilities
    [all...]
host_mock_objects.h 66 class MockClientSessionEventHandler : public ClientSession::EventHandler {
71 MOCK_METHOD1(OnSessionAuthenticating, void(ClientSession* client));
72 MOCK_METHOD1(OnSessionAuthenticated, bool(ClientSession* client));
73 MOCK_METHOD1(OnSessionChannelsConnected, void(ClientSession* client));
74 MOCK_METHOD1(OnSessionClientCapabilities, void(ClientSession* client));
75 MOCK_METHOD1(OnSessionAuthenticationFailed, void(ClientSession* client));
76 MOCK_METHOD1(OnSessionClosed, void(ClientSession* client));
77 MOCK_METHOD2(OnSessionSequenceNumber, void(ClientSession* client,
80 ClientSession* client,
client_session.h 49 // A ClientSession keeps a reference to a connection to a client, and maintains
51 class ClientSession
61 virtual void OnSessionAuthenticating(ClientSession* client) = 0;
65 virtual bool OnSessionAuthenticated(ClientSession* client) = 0;
68 virtual void OnSessionChannelsConnected(ClientSession* client) = 0;
71 virtual void OnSessionClientCapabilities(ClientSession* client) = 0;
76 virtual void OnSessionAuthenticationFailed(ClientSession* client) = 0;
79 virtual void OnSessionClosed(ClientSession* client) = 0;
83 virtual void OnSessionSequenceNumber(ClientSession* client,
89 ClientSession* client
    [all...]
chromoting_host.cc 176 // protocol::ClientSession::EventHandler implementation.
177 void ChromotingHost::OnSessionAuthenticating(ClientSession* client) {
191 bool ChromotingHost::OnSessionAuthenticated(ClientSession* client) {
201 ClientSession* other_client = *it++;
222 void ChromotingHost::OnSessionChannelsConnected(ClientSession* client) {
230 void ChromotingHost::OnSessionClientCapabilities(ClientSession* client) {
243 void ChromotingHost::OnSessionAuthenticationFailed(ClientSession* client) {
251 void ChromotingHost::OnSessionClosed(ClientSession* client) {
266 void ChromotingHost::OnSessionSequenceNumber(ClientSession* session,
272 ClientSession* session
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasRequestUpdateInbox.java 21 import javax.obex.ClientSession;
33 public void execute(ClientSession session) throws IOException {
BluetoothMasRequestSetNotificationRegistration.java 23 import javax.obex.ClientSession;
45 public void execute(ClientSession session) throws IOException {
BluetoothMasRequestGetFolderListingSize.java 23 import javax.obex.ClientSession;
53 public void execute(ClientSession session) throws IOException {
BluetoothMasRequestGetMessagesListingSize.java 23 import javax.obex.ClientSession;
54 public void execute(ClientSession session) throws IOException {
BluetoothMasRequestSetMessageStatus.java 23 import javax.obex.ClientSession;
49 public void execute(ClientSession session) throws IOException {
BluetoothMasRequestSetPath.java 21 import javax.obex.ClientSession;
52 public void execute(ClientSession session) {
BluetoothMasRequest.java 24 import javax.obex.ClientSession;
88 abstract public void execute(ClientSession session) throws IOException;
90 protected void executeGet(ClientSession session) throws IOException {
127 protected void executePut(ClientSession session, byte[] body) throws IOException {
BluetoothMasRequestGetFolderListing.java 24 import javax.obex.ClientSession;
72 public void execute(ClientSession session) throws IOException {
BluetoothMasRequestGetMessage.java 29 import javax.obex.ClientSession;
86 public void execute(ClientSession session) throws IOException {
BluetoothMasObexClientSession.java 25 import javax.obex.ClientSession;
53 private ClientSession mSession;
112 mSession = new ClientSession(mTransport);
BluetoothMasRequestPushMessage.java 22 import javax.obex.ClientSession;
76 public void execute(ClientSession session) throws IOException {
  /frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
BluetoothPbapRequestSetPath.java 23 import javax.obex.ClientSession;
52 public void execute(ClientSession session) {
BluetoothPbapRequest.java 25 import javax.obex.ClientSession;
59 public void execute(ClientSession session) throws IOException {
  /external/chromium_org/remoting/webapp/
client_session.js 9 * The ClientSession class controls lifetime of the client plugin
41 * @param {remoting.ClientSession.Mode} mode The mode of this connection.
49 remoting.ClientSession = function(accessCode, fetchPin, fetchThirdPartyToken,
54 this.state_ = remoting.ClientSession.State.CREATED;
157 if (this.mode_ == remoting.ClientSession.Mode.IT2ME) {
170 this.defineEvents(Object.keys(remoting.ClientSession.Events));
173 base.extend(remoting.ClientSession, base.EventSource);
176 remoting.ClientSession.Events = {
188 remoting.ClientSession.prototype.updateScrollbarVisibility = function() {
225 remoting.ClientSession.State =
    [all...]
server_log_entry.js 42 * @param {remoting.ClientSession.State} state
47 case remoting.ClientSession.State.UNKNOWN:
49 case remoting.ClientSession.State.CREATED:
51 case remoting.ClientSession.State.CONNECTING:
53 case remoting.ClientSession.State.INITIALIZING:
55 case remoting.ClientSession.State.CONNECTED:
57 case remoting.ClientSession.State.CLOSED:
59 case remoting.ClientSession.State.FAILED:
61 case remoting.ClientSession.State.CONNECTION_DROPPED:
63 case remoting.ClientSession.State.CONNECTION_CANCELED
    [all...]
log_to_server.js 48 * @param {remoting.ClientSession.State} state
50 * @param {remoting.ClientSession.Mode} mode
95 * @param {remoting.ClientSession.State} state
99 return ((state == remoting.ClientSession.State.CONNECTING) ||
100 (state == remoting.ClientSession.State.INITIALIZING) ||
101 (state == remoting.ClientSession.State.CONNECTED));
109 * @param {remoting.ClientSession.State} state
113 return ((state == remoting.ClientSession.State.CLOSED) ||
114 (state == remoting.ClientSession.State.FAILED) ||
115 (state == remoting.ClientSession.State.CONNECTION_DROPPED) |
    [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...]
session_connector.js 17 * @param {function(remoting.ClientSession):void} onOk Callback on success.
33 * @type {function(remoting.ClientSession):void}
57 * @type {remoting.ClientSession.Mode}
60 this.connectionMode_ = remoting.ClientSession.Mode.ME2ME;
146 * @type {remoting.ClientSession}
256 this.connectionMode_ = remoting.ClientSession.Mode.ME2ME;
284 this.connectionMode_ = remoting.ClientSession.Mode.IT2ME;
295 if (this.connectionMode_ == remoting.ClientSession.Mode.IT2ME) {
323 * @return {remoting.ClientSession.Mode}
391 * Creates ClientSession object
    [all...]

Completed in 813 milliseconds

1 2