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

1 2 3

  /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...]
securetunnelsessionclient.h 30 // certificates as part of the session description.
41 #include "talk/session/tunnel/tunnelsessionclient.h"
54 // server certificates. The initiator acts as the client. The session
56 // certificate, and the session accept response's description has the
83 virtual void OnIncomingTunnel(const buzz::Jid& jid, Session *session);
99 Session* session, talk_base::Thread* stream_thread,
104 // certificate part will be communicated within the session
113 // A TunnelSession represents one session for one client. I
    [all...]
pseudotcpchannel.h 35 #include "talk/p2p/base/session.h"
50 // 2) The PseudoTcp session has completed.
71 Session* session);
79 // Call this when the Session used to create this channel is being torn
81 void OnSessionTerminate(Session* session);
124 Session* session_;
  /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;
session.cc 28 #include "talk/p2p/base/session.h"
189 // Session timeout has occured.
219 Session::Session(SessionManager *session_manager,
243 Session::~Session() {
258 Transport* Session::GetTransport(const std::string& content_name) {
265 void Session::set_allow_local_ips(bool allow) {
273 bool Session::Initiate(const std::string &to,
297 SetState(Session::STATE_SENTINITIATE)
    [all...]
sessionmanager.h 47 class Session;
51 // SessionManager manages session instances
67 // describing a session of the given type, we will automatically create a
68 // Session object and notify this client. The client may then accept or
69 // reject the session.
74 // Creates a new session. The given name is the JID of the client on whose
75 // behalf we initiate the session.
76 Session *CreateSession(const std::string& local_name,
79 // Destroys the given session.
80 void DestroySession(Session *session)
    [all...]
sessionmanager.cc 34 #include "talk/p2p/base/session.h"
54 // Note: Session::Terminate occurs asynchronously, so it's too late to
77 Session* SessionManager::CreateSession(const std::string& local_name,
84 Session* SessionManager::CreateSession(
91 Session* session = new Session(this, local_name, initiator_name, local
93 session_map_[session->id()] = session;
94 session->SignalRequestSignaling.connect
125 Session* session = session_map_.begin()->second; local
157 Session* session = FindSession(msg.sid, msg.from); local
202 Session* session = FindSession(msg.sid, msg.to); local
    [all...]
session.h 67 // Used for errors that may be returned by public session methods that
69 // TODO: Use this error in Session::Initiate and
70 // Session::Accept.
75 // create transport channels before receiving or sending a session
77 // session had one ChannelMap and transport. Now, with multiple
78 // transports per session, we need multiple ChannelMaps as well.
127 // on Session. Right now the Channel class requires a BaseSession, but it only
132 // A BaseSession manages general session state. This includes negotiation
155 STATE_INPROGRESS, // session accepted and in progress
156 STATE_DEINIT, // session is being destroye
    [all...]
  /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...]
call.cc 32 #include "talk/session/phone/call.h"
33 #include "talk/session/phone/mediasessionclient.h"
60 Session *session = sessions_[0]; local
61 RemoveSession(session);
62 session_client_->session_manager()->DestroySession(session);
67 Session *Call::InitiateSession(const buzz::Jid &jid,
71 Session *session = session_client_->CreateSession(this); local
72 AddSession(session, offer)
370 Session *session = call->sessions_[0]; local
    [all...]
  /development/samples/SpellChecker/SampleSpellCheckerService/src/com/example/android/samplespellcheckerservice/
SampleSpellCheckerService.java 28 public Session createSession() {
32 private static class AndroidSpellCheckerSession extends Session {
  /external/qemu/
shaper.c 286 /* this type is used to model a session connection/state
287 * if session->packet is != NULL, then the connection is delayed
299 } SessionRec, *Session;
307 session_free( Session session )
309 if (session) {
310 if (session->packet) {
311 queued_packet_free(session->packet);
312 session->packet = NULL;
314 qemu_free( session );
426 Session session; local
484 Session session = delay->sessions; local
518 Session session = *lookup; local
531 Session session = *lookup; local
581 Session session = delay->sessions; local
    [all...]
  /frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java 42 * {@link #createSession()} to provide a spell checker session that is corresponding
43 * to requested language and so on. The spell checker session returned by this method
44 * should extend {@link SpellCheckerService.Session}.
49 * <p>{@link SpellCheckerService.Session#onGetSuggestions(TextInfo, int)}
54 * {@link SpellCheckerService.Session#onGetSuggestionsMultiple(TextInfo[], int, boolean)} for
58 * <p>Please note that {@link SpellCheckerService.Session#getLocale()} does not return a valid
59 * locale before {@link SpellCheckerService.Session#onCreate()} </p>
84 * Factory method to create a spell checker session impl
87 public abstract Session createSession();
92 public static abstract class Session {
    [all...]
  /external/srec/tools/dictTest/
Android.mk 18 $(ASR_ROOT_DIR)/srec/Session/include \
  /external/srec/tools/make_ve_grammar/
Android.mk 17 $(ASR_ROOT_DIR)/srec/Session/include \
  /external/srec/tools/test_swiarb/
Android.mk 17 $(ASR_ROOT_DIR)/srec/Session/include \
  /external/srec/srec/EventLog/
Android.mk 18 $(ASR_ROOT_DIR)/srec/Session/include \
  /external/srec/srec/test/SRecTest/
Android.mk 22 $(ASR_ROOT_DIR)/srec/Session/include \
  /external/srec/srec/test/SRecTestAudio/
Android.mk 22 $(ASR_ROOT_DIR)/srec/Session/include \
  /external/srec/tools/make_cfst/
Android.mk 19 $(ASR_ROOT_DIR)/srec/Session/include \
  /external/srec/tools/parseStringTest/
Android.mk 21 $(ASR_ROOT_DIR)/srec/Session/include \
  /development/scripts/app_engine_server/gae_shell/
shell.py 78 class Session(db.Model):
79 """A shell session. Stores the session's globals.
81 Each session globals is stored in one of two places:
170 """Creates a new session and renders the shell.html template.
174 # set up the session. TODO: garbage collect old shell sessions
175 session_key = self.request.get('session')
177 session = Session.get(session_key)
179 # create a new session
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 69 ATTRIBUTE Session-Timeout 27 integer
79 ATTRIBUTE Acct-Session-Id 44 string
81 ATTRIBUTE Acct-Session-Time 46 integer
124 # Limit session traffic
125 ATTRIBUTE Session-Octets-Limit 227 integer
199 VALUE Acct-Terminate-Cause Session-Timeout 5
dictionary.compat 42 ATTRIBUTE Session 1034 integer

Completed in 388 milliseconds

1 2 3