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

1 2 3 4 5 6 7 8

  /external/smack/src/org/jivesoftware/smack/packet/
Session.java 24 * IQ packet that will be sent to the server to establish a session.<p>
26 * If a server supports sessions, it MUST include a <i>session</i> element in the
28 * Upon being informed that session establishment is required by the server the client MUST
29 * establish a session if it desires to engage in instant messaging and presence functionality.<p>
32 * <a href=http://www.xmpp.org/specs/rfc3921.html#session>link</a>.
36 public class Session extends IQ {
38 public Session() {
43 return "<session xmlns=\"urn:ietf:params:xml:ns:xmpp-session\"/>";
  /external/openssh/
session.h 1 /* $OpenBSD: session.h,v 1.30 2008/05/08 12:21:16 djm Exp $ */
30 typedef struct Session Session;
31 struct Session {
73 void session_destroy_all(void (*)(Session *));
74 void session_pty_cleanup2(Session *);
76 Session *session_new(void);
77 Session *session_by_tty(char *);
78 void session_close(Session *);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerSessionFactory.java 19 import android.service.textservice.SpellCheckerService.Session;
22 public static Session newInstance(AndroidSpellCheckerService service) {
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
call.h 41 #include "talk/p2p/base/session.h"
43 #include "talk/session/media/audiomonitor.h"
44 #include "talk/session/media/currentspeakermonitor.h"
45 #include "talk/session/media/mediamessages.h"
46 #include "talk/session/media/mediasession.h"
67 Session* InitiateSession(const buzz::Jid& to, const buzz::Jid& initiator,
69 Session* InitiateSession(const std::string& id, const buzz::Jid& to,
71 void AcceptSession(Session* session, const CallOptions& options);
72 void RejectSession(Session* session)
250 Session* session; member in struct:cricket::Call::MediaSession
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
session.cc 5 #include "chrome/test/chromedriver/session.h"
20 base::LazyInstance<base::ThreadLocalPointer<Session> >
32 const base::TimeDelta Session::kDefaultPageLoadTimeout =
35 Session::Session(const std::string& id)
44 Session::Session(const std::string& id, scoped_ptr<Chrome> chrome)
54 Session::~Session() {}
56 Status Session::GetTargetWindow(WebView** web_view)
    [all...]
session_commands.h 23 struct Session;
42 // Initializes a session.
45 Session* session,
49 // Quits a session.
52 Session* session,
56 // Gets the capabilities of a particular session.
58 Session* session,
    [all...]
alert_commands.h 16 struct Session;
21 Session* session,
29 Session* session,
35 Session* session,
42 Session* session,
49 Session* session
    [all...]
window_commands.h 18 struct Session;
23 Session* session,
31 Session* session,
37 Session* session,
44 Session* session,
51 Session* session
    [all...]
element_util.h 19 struct Session;
32 Session* session,
38 Session* session,
43 Session* session,
49 Session* session,
56 Session* session
    [all...]
session.h 38 struct Session {
41 explicit Session(const std::string& id);
42 Session(const std::string& id, scoped_ptr<Chrome> chrome);
43 ~Session();
77 Session* GetThreadLocalSession();
79 void SetThreadLocalSession(scoped_ptr<Session> session);
session_unittest.cc 12 #include "chrome/test/chromedriver/session.h"
37 TEST(Session, GetTargetWindowNoChrome) {
38 Session session("1");
40 ASSERT_EQ(kNoSuchWindow, session.GetTargetWindow(&web_view).code());
43 TEST(Session, GetTargetWindowTargetWindowClosed) {
45 Session session("1", chrome.Pass());
46 session.window = "2";
48 ASSERT_EQ(kNoSuchWindow, session.GetTargetWindow(&web_view).code())
    [all...]
element_commands.h 18 struct Session;
23 Session* session,
32 Session* session,
40 Session* session,
49 Session* session,
57 Session* session
    [all...]
  /external/chromium_org/remoting/protocol/
video_reader.h 19 class Session;
34 virtual void Init(Session* session,
video_writer.h 19 class Session;
33 virtual void Init(Session* session, const InitializedCallback& callback) = 0;
session.h 26 class Session {
32 // Sent session-initiate, but haven't received session-accept.
35 // Received session-initiate, but haven't sent session-accept.
38 // Session has been accepted and is pending authentication.
41 // Session has been connected and authenticated.
44 // Session has been closed.
56 // Called after session state has changed. It is safe to destroy
57 // the session from within the handler if |state| is CLOSED o
    [all...]
connection_to_client.h 16 #include "remoting/protocol/session.h"
37 public Session::EventHandler {
67 // Constructs a ConnectionToClient object for the |session|. Takes
68 // ownership of |session|.
69 explicit ConnectionToClient(Session* session);
77 virtual Session* session();
95 // All stubs MUST be set before the session's channels become connected.
103 // Session::EventHandler interface
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
tunnelsessionclient.h 37 #include "talk/p2p/base/session.h"
66 void OnSessionCreate(Session* session, bool received);
67 void OnSessionDestroy(Session* session);
75 talk_base::StreamInterface* AcceptTunnel(Session* session);
76 void DeclineTunnel(Session* session);
79 virtual void OnIncomingTunnel(const buzz::Jid &jid, Session *session) = 0
    [all...]
tunnelsessionclient.cc 70 KLABEL(Session::STATE_INIT),
71 KLABEL(Session::STATE_SENTINITIATE),
72 KLABEL(Session::STATE_RECEIVEDINITIATE),
73 KLABEL(Session::STATE_SENTACCEPT),
74 KLABEL(Session::STATE_RECEIVEDACCEPT),
75 KLABEL(Session::STATE_SENTMODIFY),
76 KLABEL(Session::STATE_RECEIVEDMODIFY),
77 KLABEL(Session::STATE_SENTREJECT),
78 KLABEL(Session::STATE_RECEIVEDREJECT),
79 KLABEL(Session::STATE_SENTREDIRECT)
112 Session* session = (*it)->ReleaseSession(true); local
185 Session* session = session_manager_->CreateSession(jid_.Str(), namespace_); local
332 Session* session = session_; local
    [all...]
  /external/chromium_org/content/browser/speech/
speech_recognition_manager_impl.h 35 // corresponds to a session, initiated via |CreateSession|.
37 // In any moment, the manager has a single session known as the primary session,
39 // This is the session that is capturing audio, waiting for user permission,
48 // - Relays recognition results/status/error events of each session to the
50 // - Relays also recognition results/status/error events of every session to
124 struct Session {
125 Session();
126 ~Session();
150 // Entry point for pushing any external event into the session handling FSM
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
tunnelsessionclient.h 37 #include "talk/p2p/base/session.h"
66 void OnSessionCreate(Session* session, bool received);
67 void OnSessionDestroy(Session* session);
75 talk_base::StreamInterface* AcceptTunnel(Session* session);
76 void DeclineTunnel(Session* session);
79 virtual void OnIncomingTunnel(const buzz::Jid &jid, Session *session) = 0
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/ClientLib/
Session.cpp 35 #include "Session.h"
42 Session::Session(
57 Session::~Session(void)
89 void Session::setErrorInfo(
98 int32_t Session::getLastErr(
107 mcResult_t Session::addBulkBuf(addr_t buf, uint32_t len, BulkBufferDescriptor **blkBuf)
145 uint32_t Session::getBufHandle(addr_t sVirtAddr)
161 mcResult_t Session::removeBulkBuf(addr_t virtAddr
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
sessionclient.h 38 class Session;
54 // A SessionClient exists in 1-1 relation with each session. The implementor
67 virtual void OnSessionCreate(Session* session, bool received_initiate) = 0;
68 virtual void OnSessionDestroy(Session* session) = 0;
  /external/chromium/third_party/libjingle/source/talk/session/phone/
call.h 36 #include "talk/p2p/base/session.h"
39 #include "talk/session/phone/audiomonitor.h"
40 #include "talk/session/phone/voicechannel.h"
52 Session *InitiateSession(const buzz::Jid &jid, const CallOptions& options);
53 void AcceptSession(BaseSession *session, const CallOptions& options);
54 void RejectSession(BaseSession *session);
55 void TerminateSession(BaseSession *session);
58 void SetVideoRenderer(BaseSession *session, uint32 ssrc,
60 void AddStream(BaseSession *session, uint32 voice_ssrc, uint32 video_ssrc);
61 void RemoveStream(BaseSession *session, uint32 voice_ssrc, uint32 video_ssrc)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
sessionclient.h 40 class Session;
64 // A SessionClient exists in 1-1 relation with each session. The implementor
77 virtual void OnSessionCreate(Session* session, bool received_initiate) = 0;
78 virtual void OnSessionDestroy(Session* session) = 0;
sessionmanager.h 48 class Session;
52 // SessionManager manages session instances.
83 // describing a session of the given type, we will automatically create a
84 // Session object and notify this client. The client may then accept or
85 // reject the session.
90 // Creates a new session. The given name is the JID of the client on whose
91 // behalf we initiate the session.
92 Session *CreateSession(const std::string& local_name,
95 Session *CreateSession(const std::string& id,
99 // Destroys the given session
    [all...]

Completed in 303 milliseconds

1 2 3 4 5 6 7 8