HomeSort by relevance Sort by last modified time
    Searched refs:Session (Results 151 - 175 of 189) sorted by null

1 2 3 4 5 67 8

  /external/chromium/third_party/libjingle/source/talk/session/phone/
channel.cc 28 #include "talk/session/phone/channel.h"
35 #include "talk/session/phone/channelmanager.h"
36 #include "talk/session/phone/mediasessionclient.h"
37 #include "talk/session/phone/mediasink.h"
38 #include "talk/session/phone/rtcpmuxfilter.h"
91 MediaChannel* media_channel, BaseSession* session,
96 session_(session),
116 session->SignalState.connect(this, &BaseChannel::OnSessionState);
385 void BaseChannel::OnSessionState(BaseSession* session,
389 case Session::STATE_SENTINITIATE
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
logging.cc 19 #include "chrome/test/chromedriver/session.h"
81 Session* session = GetThreadLocalSession(); local
82 if (!session)
84 return session->driver_log.get();
  /external/chromium_org/remoting/host/
chromoting_host.cc 107 // Destroy the session manager to make sure that |signal_strategy_| does not
236 void ChromotingHost::OnSessionSequenceNumber(ClientSession* session,
242 ClientSession* session,
247 OnClientRouteChange(session->client_jid(), channel_name,
258 protocol::Session* session,
279 if (!protocol_config_->Select(session->candidate_config(), &config)) {
280 LOG(WARNING) << "Rejecting connection from " << session->jid()
286 session->set_config(config);
290 HOST_LOG << "Client connected: " << session->jid()
    [all...]
  /external/chromium_org/remoting/protocol/
fake_session.h 18 #include "remoting/protocol/session.h"
148 // FakeSession is a dummy protocol::Session that uses FakeSocket for all
150 class FakeSession : public Session,
169 // Session interface.
jingle_session.cc 79 void JingleSession::SetEventHandler(Session::EventHandler* event_handler) {
102 // Generate random session ID. There are usually not more than 1
103 // concurrent session per host, so a random 64-bit integer provides
105 // clients generate the same session ID concurrently.
108 // Send session-initiate message.
164 // Send the session-accept message.
351 << "\". Terminating the session.";
355 // session-info is used for the new authentication protocol,
410 << response->Str() << "\". Terminating the session.";
460 DLOG(WARNING) << "Received session-accept without authentication message "
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
tunnelsessionclient_unittest.cc 38 #include "talk/session/tunnel/tunnelsessionclient.h"
116 // Then route the incoming signaling message to the "other" session manager.
143 cricket::Session* session) {
144 remote_tunnel_.reset(remote_client_.AcceptTunnel(session));
pseudotcpchannel.cc 102 PseudoTcpChannel::PseudoTcpChannel(Thread* stream_thread, Session* session)
103 : signal_thread_(session->session_manager()->signaling_thread()),
106 session_(session), channel_(NULL), tcp_(NULL), stream_(NULL),
192 void PseudoTcpChannel::OnSessionTerminate(Session* session) {
193 // When the session terminates before we even connected
196 ASSERT(session == session_);
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channel_unittest.cc 43 #include "talk/session/media/channel.h"
44 #include "talk/session/media/mediamessages.h"
45 #include "talk/session/media/mediarecorder.h"
46 #include "talk/session/media/mediasessionclient.h"
47 #include "talk/session/media/typingmonitor.h"
133 // Controls how long we wait for a session to send messages that we
309 cricket::BaseSession* session,
312 thread, engine, ch, session, cricket::CN_AUDIO, rtcp);
760 // Use a partial updated session description.
828 // Use a partial updated session description
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Connection.java     [all...]
SFTPv3Client.java 71 private Session sess;
102 log.debug("Opening session and starting SFTP subsystem.");
883 * @return True if the underlying session is in open state
890 * Close this SFTP session. NEVER forget to call this method to free up
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
Session.java 51 * This class represents an active client session. There is generally one
52 * Session object per process that is interacting with the window manager.
54 final class Session extends IWindowSession.Stub
66 public Session(WindowManagerService service, IInputMethodClient client,
74 sb.append("Session{");
129 Slog.wtf(WindowManagerService.TAG, "Window Session Crash", e);
461 WindowManagerService.TAG, " NEW SURFACE SESSION " + mSurfaceSession);
480 WindowManagerService.TAG, " KILL SURFACE SESSION " + mSurfaceSession);
484 Slog.w(WindowManagerService.TAG, "Exception thrown when killing surface session "
485 + mSurfaceSession + " in session " + thi
    [all...]
WindowManagerService.java 333 final HashSet<Session> mSessions = new HashSet<Session>();
555 Session mHoldingScreenOn;
579 private Session mHoldScreen = null;
7553 Session session = new Session(this, client, inputContext); local
    [all...]
WindowState.java 74 final Session mSession;
306 WindowState(WindowManagerService service, Session s, IWindow c, WindowToken token,
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transport.h 77 class Session;
247 // Must be called before applying local session description.
320 // returned, the error is considered unrecoverable, and the session is
322 // TODO(juberti): Remove these obsolete functions once Session no longer
session_unittest.cc 49 #include "talk/p2p/base/session.h"
72 // Controls how long we wait for a session to send messages that we
155 return "<session"
156 " xmlns=\"http://www.google.com/session\""
162 "</session>";
211 " action=\"session-initiate\""
341 return JingleActionXml("session-accept", content_xml);
411 "session-terminate",
425 "<redirect xmlns=\"http://www.google.com/session\">"
782 void OnSessionCreate(cricket::Session* session, bool initiate)
1128 cricket::Session* session; member in class:TestClient
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 45 ATTRIBUTE Ascend-Session-Svr-Key 151 string
287 VALUE Ascend-Event-Type Ascend-Session-Event 2
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 164 // TODO: use the right locale for each session
201 public Session createSession() {
230 // TODO: remove this class and replace it by storage local to the session.
  /external/chromium_org/third_party/libjingle/source/talk/examples/pcp/
pcp_main.cc 35 #include "talk/session/tunnel/securetunnelsessionclient.h"
37 #include "talk/session/tunnel/tunnelsessionclient.h"
373 std::string description, cricket::Session* session) {
377 client->DeclineTunnel(session);
387 client->DeclineTunnel(session);
391 talk_base::StreamInterface* stream = client->AcceptTunnel(session);
659 // Create the P2P session manager.
  /external/openssh/
monitor.c 83 #include "session.h"
697 /* save session id, it will be passed on the first call */
915 fatal("%s: no bsd auth session", __func__);
    [all...]
monitor_wrap.c 79 #include "session.h"
752 mm_session_pty_cleanup2(Session *s)
768 /* unlink pty from session */
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
dsa.cpp 281 Session(),
855 RWsSession& CDsa::Session()
dsa_old.cpp 415 RWsSession& CDsa::Session()
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/
image_editor.js 106 * Open the editing session for a new image.
118 throw new Error('Session not closed');
138 * Close the current image editing session.
154 // Session is already closed.
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
SDL_main.cpp 362 gEpocEnv->iDsa->Session().PointerCursorMode() : KErrNotReady;
  /external/chromium_org/remoting/webapp/
format_iq.js 169 * Pretty print the session-initiate or session-accept info from the given
172 * @param {Node} jingle Xml node with jingle session-initiate or session-accept
245 * Pretty print the session-terminate info from the given Xml node.
247 * @param {Node} jingle Xml node with jingle session-terminate info contained in
250 * @return {?string} Pretty version of jingle session-terminate stanza. Null if
334 if (action == 'session-initiate' || action == 'session-accept') {
337 if (action == 'session-terminate')
    [all...]

Completed in 1484 milliseconds

1 2 3 4 5 67 8