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

1 2 3

  /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 {
  /external/chromium_org/remoting/host/
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 OnSessionAuthenticationFailed(ClientSession* client) OVERRIDE;
127 virtual void OnSessionClosed(ClientSession* session) OVERRIDE;
129 ClientSession* session,
164 typedef std::list<ClientSession*> ClientList;
client_session.cc 38 ClientSession::ClientSession(
98 ClientSession::~ClientSession() {
109 void ClientSession::NotifyClientResolution(
136 void ClientSession::ControlVideo(const protocol::VideoControl& video_control) {
164 void ClientSession::ControlAudio(const protocol::AudioControl& audio_control) {
175 void ClientSession::SetCapabilities(
201 void ClientSession::RequestPairing(
213 void ClientSession::DeliverClientMessage
    [all...]
client_session.h 47 // A ClientSession keeps a reference to a connection to a client, and maintains
49 class ClientSession
59 virtual void OnSessionAuthenticating(ClientSession* client) = 0;
63 virtual bool OnSessionAuthenticated(ClientSession* client) = 0;
66 virtual void OnSessionChannelsConnected(ClientSession* client) = 0;
71 virtual void OnSessionAuthenticationFailed(ClientSession* client) = 0;
74 virtual void OnSessionClosed(ClientSession* client) = 0;
79 ClientSession* client,
89 ClientSession(
102 virtual ~ClientSession();
    [all...]
host_mock_objects.h 71 class MockClientSessionEventHandler : public ClientSession::EventHandler {
76 MOCK_METHOD1(OnSessionAuthenticating, void(ClientSession* client));
77 MOCK_METHOD1(OnSessionAuthenticated, bool(ClientSession* client));
78 MOCK_METHOD1(OnSessionChannelsConnected, void(ClientSession* client));
79 MOCK_METHOD1(OnSessionAuthenticationFailed, void(ClientSession* client));
80 MOCK_METHOD1(OnSessionClosed, void(ClientSession* client));
82 ClientSession* client,
chromoting_host.cc 178 // protocol::ClientSession::EventHandler implementation.
179 void ChromotingHost::OnSessionAuthenticating(ClientSession* client) {
193 bool ChromotingHost::OnSessionAuthenticated(ClientSession* client) {
203 ClientSession* other_client = *it++;
224 void ChromotingHost::OnSessionChannelsConnected(ClientSession* client) {
232 void ChromotingHost::OnSessionAuthenticationFailed(ClientSession* client) {
240 void ChromotingHost::OnSessionClosed(ClientSession* client) {
256 ClientSession* session,
305 ClientSession* client = new ClientSession(
    [all...]
  /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
51 * @param {remoting.ClientSession.Mode} mode The mode of this connection.
59 remoting.ClientSession = function(signalStrategy, container, hostDisplayName,
65 this.state_ = remoting.ClientSession.State.CREATED;
171 this.defineEvents(Object.keys(remoting.ClientSession.Events));
174 base.extend(remoting.ClientSession, base.EventSource);
177 remoting.ClientSession.Events = {
189 remoting.ClientSession.prototype.getHostDisplayName = function() {
200 remoting.ClientSession.prototype.updateScrollbarVisibility = function() {
235 remoting.ClientSession.prototype.getShrinkToFit = function()
    [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...]
  /external/chromium_org/remoting/webapp/browser_test/
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...]
  /external/chromium_org/remoting/webapp/unittests/
it2me_service_unittest.js 62 state: remoting.ClientSession.State.CONNECTED
68 state: remoting.ClientSession.State.CONNECTED
102 state: remoting.ClientSession.State.CONNECTED
108 state: remoting.ClientSession.State.CONNECTED
113 state: remoting.ClientSession.State.CLOSED
119 state: remoting.ClientSession.State.CLOSED
it2me_helper_channel_unittest.js 85 state:remoting.ClientSession.State.CONNECTING
89 state:remoting.ClientSession.State.CONNECTED
95 state:remoting.ClientSession.State.CONNECTING
100 state:remoting.ClientSession.State.CONNECTED
112 state: remoting.ClientSession.State.FAILED
123 state:remoting.ClientSession.State.CLOSED
131 state:remoting.ClientSession.State.CLOSED
141 state:remoting.ClientSession.State.FAILED
149 state:remoting.ClientSession.State.FAILED
171 state:remoting.ClientSession.State.CLOSE
    [all...]

Completed in 243 milliseconds

1 2 3