HomeSort by relevance Sort by last modified time
    Searched defs:sessions (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/appengine/
sessions_memcache.py 6 Extended sessions stored in memcache.
13 from webapp2_extras import sessions namespace
16 class MemcacheSessionFactory(sessions.CustomBackendSessionFactory):
19 To use memcache sessions, pass this class as the `factory` keyword to
20 :meth:`webapp2_extras.sessions.SessionStore.get_session`::
30 See in :meth:`webapp2_extras.sessions.SessionStore` an example of how to
31 make sessions available in a :class:`webapp2.RequestHandler`.
40 return sessions.SessionDict(self, data=data)
43 return sessions.SessionDict(self, new=True)
sessions_ndb.py 6 Extended sessions stored in datastore using the ndb library.
46 from webapp2_extras import sessions namespace
80 class DatastoreSessionFactory(sessions.CustomBackendSessionFactory):
83 To use datastore sessions, pass this class as the `factory` keyword to
84 :meth:`webapp2_extras.sessions.SessionStore.get_session`::
93 See in :meth:`webapp2_extras.sessions.SessionStore` an example of how to
94 make sessions available in a :class:`webapp2.RequestHandler`.
106 return sessions.SessionDict(self, data=data)
109 return sessions.SessionDict(self, new=True)
  /external/chromium-trace/trace-viewer/third_party/webapp2/tests/
extras_appengine_sessions_memcache_test.py 3 from webapp2_extras import sessions namespace
10 'webapp2_extras.sessions': {
25 store = sessions.SessionStore(req)
44 store = sessions.SessionStore(req)
61 store = sessions.SessionStore(req)
75 store = sessions.SessionStore(req)
90 store = sessions.SessionStore(req)
111 store = sessions.SessionStore(req)
129 store = sessions.SessionStore(req)
extras_appengine_sessions_ndb_test.py 6 from webapp2_extras import sessions namespace
13 'webapp2_extras.sessions': {
32 store = sessions.SessionStore(req)
51 store = sessions.SessionStore(req)
68 store = sessions.SessionStore(req)
85 store = sessions.SessionStore(req)
99 store = sessions.SessionStore(req)
114 store = sessions.SessionStore(req)
135 store = sessions.SessionStore(req)
153 store = sessions.SessionStore(req
    [all...]
extras_sessions_test.py 3 from webapp2_extras import sessions namespace
8 'webapp2_extras.sessions': {
15 factory = sessions.SecureCookieSessionFactory
21 self.assertRaises(Exception, sessions.SessionStore, req)
27 store = sessions.SessionStore(req, config={
42 store = sessions.SessionStore(req)
61 store = sessions.SessionStore(req)
78 store = sessions.SessionStore(req)
94 store = sessions.SessionStore(req)
109 store = sessions.SessionStore(req
    [all...]
extras_auth_test.py 2 from webapp2_extras import sessions namespace
26 'webapp2_extras.sessions': {
35 session_store = sessions.get_store(request=req)
61 # Save sessions.
102 'webapp2_extras.sessions': {
110 session_store = sessions.get_store(request=req)
120 self.assertEqual(session_store.sessions['auth'].session_args['max_age'],
126 self.assertEqual(session_store.sessions['auth'].session_args['max_age'],
  /external/jetty/src/java/org/eclipse/jetty/server/session/
HashSessionIdManager.java 67 * @return Collection of Sessions for the passed session ID
71 ArrayList<HttpSession> sessions = new ArrayList<HttpSession>(); local
79 sessions.add(session);
82 return sessions;
154 Set<WeakReference<HttpSession>> sessions = _sessions.get(id); local
155 if (sessions==null)
157 sessions=new HashSet<WeakReference<HttpSession>>();
158 _sessions.put(id,sessions);
160 sessions.add(ref);
174 Collection<WeakReference<HttpSession>> sessions = _sessions.get(id) local
204 Collection<WeakReference<HttpSession>> sessions; local
    [all...]
HashSessionManager.java 51 * This manager supports saving sessions to disk, either periodically or at shutdown.
52 * Sessions can also have their content idle saved to disk to reduce the memory overheads of large idle sessions.
69 long _idleSavePeriodMs = 0; // don't idle save sessions by default.
139 // This will callback invalidate sessions - where we decide if we will save
148 * @return the period in seconds at which a check is made for sessions to be invalidated.
160 int sessions=super.getSessions(); local
163 if (_sessions.size()!=sessions)
164 __log.warn("sessions: "+_sessions.size()+"!="+sessions);
373 Map<String,HashedSession> sessions=_sessions; local
395 ArrayList<HashedSession> sessions=new ArrayList<HashedSession>(_sessions.values()); local
    [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
ClientSessionContextTest.java 98 Set<SSLSession> sessions = new HashSet<SSLSession>(); local
102 sessions.add(context.getSession(id));
106 for (SSLSession s : sessions) {
109 assertEquals(expected, sessions);
  /external/conscrypt/src/main/java/org/conscrypt/
AbstractSessionContext.java 52 /** Identifies OpenSSL sessions. */
55 private final Map<ByteArray, SSLSession> sessions field in class:AbstractSessionContext
79 * Returns the collection of sessions ordered from oldest to newest
82 synchronized (sessions) {
83 SSLSession[] array = sessions.values().toArray(
84 new SSLSession[sessions.size()]);
137 synchronized (sessions) {
138 int size = sessions.size();
141 Iterator<SSLSession> i = sessions.values().iterator();
159 synchronized (sessions) {
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/
StubFtpServer.java 156 private Map sessions = new HashMap(); field in class:StubFtpServer
256 sessions.put(session, sessionInfo);
275 for (Iterator iter = sessions.keySet().iterator(); iter.hasNext();) {
277 SessionInfo sessionInfo = (SessionInfo) sessions.get(session);
389 for (Iterator iter = sessions.keySet().iterator(); iter.hasNext();) {
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/server/
AbstractFtpServer.java 99 private Map sessions = new HashMap(); field in class:AbstractFtpServer
163 sessions.put(session, sessionInfo);
318 for (Iterator iter = sessions.values().iterator(); iter.hasNext();) {
350 for (Iterator iter = sessions.entrySet().iterator(); iter.hasNext();) {
  /external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
auth.py 17 from webapp2_extras import sessions namespace
35 #: persistent auth sessions. Default is 86400 * 7 * 3 (3 weeks).
221 store = sessions.get_store(request=request)
284 used to validate sessions or service requests.
400 If True, saves permanent sessions.
444 If True, saves permanent sessions.
  /frameworks/base/cmds/media/src/com/android/commands/media/
Media.java 64 " media list-sessions\n" +
70 "media list-sessions: print a list of the current sessions.\n" +
72 " Use the tag from list-sessions.\n"
89 } else if (op.equals("list-sessions")) {
114 List<IBinder> sessions = mSessionService local
116 for (IBinder session : sessions) {
293 System.out.println("Sessions:");
295 List<IBinder> sessions = mSessionService local
297 for (IBinder session : sessions) {
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
BordeauxSessionStorage.java 45 private static final String SESSION_TABLE = "sessions";
133 void getAllSessions(ConcurrentHashMap<String, BordeauxSessionManager.Session> sessions) {
140 sessions.put(key, session);
144 // remove all sessions that have the key that matches the given sql regular
  /external/openssh/
session.c 151 static Session *sessions = NULL; variable
293 error("no more sessions");
584 * it to the user, otherwise multiple sessions may accumulate
845 * it to the user, otherwise multiple sessions may accumulate
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius_server.c 29 * RADIUS_MAX_SESSION - Maximum number of active sessions
107 struct radius_session *sessions; member in struct:radius_client
143 * num_sess - Number of active sessions
449 struct radius_session *sess = client->sessions;
487 session = client->sessions;
491 client->sessions = sess->next;
543 sess->next = client->sessions;
544 client->sessions = sess;
    [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.cpp 614 uint32_t sessions = t->hasAudioSession(lSessionId); local
615 if (sessions & PlaybackThread::EFFECT_SESSION) {
1710 uint32_t sessions = thread->hasAudioSession(sessionId); local
    [all...]
  /external/boringssl/src/include/openssl/
ssl.h 654 * retained in the external representation of sessions, see ssl_asn1.c). */
887 LHASH_OF(SSL_SESSION) *sessions; member in struct:ssl_ctx_st
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java 1543 final List<MediaController> sessions local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.test.performance_3.6.0.v20091014.jar 
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
org.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar 
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
  /external/robolectric/lib/main/
h2-1.2.147.jar 

Completed in 330 milliseconds

1 2