HomeSort by relevance Sort by last modified time
    Searched refs:sessions (Results 1 - 15 of 15) sorted by null

  /libcore/luni/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
ClientSessionContextTest.java 43 assertEquals(2, context.sessions.size());
45 Set<SSLSession> sessions = new HashSet<SSLSession>(); local
48 sessions.add(context.getSession((byte[]) ids.nextElement()));
55 assertEquals(expected, sessions);
73 Set<SSLSession> sessions = new HashSet<SSLSession>(); local
76 sessions.add(context.getSession((byte[]) ids.nextElement()));
83 assertEquals(expected, sessions);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
AbstractSessionContext.java 47 /** Identifies OpenSSL sessions. */
50 private final Map<ByteArray, SSLSession> sessions field in class:AbstractSessionContext
71 * Returns the collection of sessions ordered from oldest to newest
74 synchronized (sessions) {
75 SSLSession[] array = sessions.values().toArray(
76 new SSLSession[sessions.size()]);
122 synchronized (sessions) {
123 int size = sessions.size();
126 Iterator<SSLSession> i = sessions.values().iterator();
143 synchronized (sessions) {
    [all...]
  /external/qemu/
shaper.c 385 Session sessions; member in struct:NetDelayRec_
400 Session* pnode = &delay->sessions;
431 for (session = delay->sessions; session != NULL; session = session->next)
464 delay->sessions = NULL;
482 /* when changing the latency, accept all sessions */
483 while (delay->sessions) {
484 Session session = delay->sessions;
485 delay->sessions = session->next;
552 session->next = delay->sessions;
553 delay->sessions = session
    [all...]
  /external/bluetooth/bluez/network/
server.c 81 GSList *sessions; /* Active connections */ member in struct:network_server
295 ns->sessions = g_slist_append(ns->sessions, session);
685 if (ns->sessions) {
686 g_slist_foreach(ns->sessions, (GFunc) session_free, NULL);
687 g_slist_free(ns->sessions);
  /external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius_server.c 75 struct radius_session *sessions; member in struct:radius_client
166 struct radius_session *sess = client->sessions;
208 session = client->sessions;
212 client->sessions = sess->next;
264 sess->next = client->sessions;
265 client->sessions = sess;
845 struct radius_session *sessions)
849 session = sessions;
868 radius_server_free_sessions(data, prev->sessions);
1282 for (s = cli->sessions; s; s = s->next)
    [all...]
  /external/openssl/ssl/
ssl_sess.c 237 * very close to 2^128 (or 2^256) SSL sessions to our server. How you might
238 * store that many sessions is perhaps a more interesting question ... */
255 * we could not prevent the concurrent creation of sessions
469 ret=lh_SSL_SESSION_retrieve(s->session_ctx->sessions,&data);
607 s=lh_SSL_SESSION_insert(ctx->sessions,c);
611 * ctx->sessions), or we're in trouble. */
673 if ((r = lh_SSL_SESSION_retrieve(ctx->sessions,c)) == c)
676 r=lh_SSL_SESSION_delete(ctx->sessions,c);
934 tp.cache=s->sessions;
    [all...]
ssl_lib.c 465 p = lh_SSL_SESSION_retrieve(ssl->ctx->sessions, &r);
1094 return ctx->sessions;
1135 return(lh_SSL_SESSION_num_items(ctx->sessions));
    [all...]
ssl.h 478 * in the external representation of sessions, see ssl_asn1.c). */
701 LHASH_OF(SSL_SESSION) *sessions; member in struct:ssl_ctx_st
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
SSLSocketTest.java 986 Map<String, byte[]> sessions = new HashMap<String, byte[]>(); field in class:SSLSocketTest.FakeClientSessionCache
    [all...]
  /cts/tools/host/src/com/android/cts/
ConsoleUi.java 190 + cmdStr + ": list all result of sessions");
578 // there are no existing sessions
1180 Collection<TestSession> sessions = mHost.getSessions(); local
    [all...]
  /external/bluetooth/bluez/audio/
avdtp.c 332 GSList *sessions; member in struct:avdtp_server
1151 server->sessions = g_slist_remove(server->sessions, session);
    [all...]
  /external/openssl/include/openssl/
ssl.h 478 * in the external representation of sessions, see ssl_asn1.c). */
701 LHASH_OF(SSL_SESSION) *sessions; member in struct:ssl_ctx_st
    [all...]
  /frameworks/base/services/audioflinger/
AudioFlinger.cpp 332 uint32_t sessions = t->hasAudioSession(*sessionId); local
333 if (sessions & PlaybackThread::TRACK_SESSION) {
338 if (sessions & PlaybackThread::EFFECT_SESSION) {
    [all...]
  /external/iproute2/doc/
ip-cref.tex     [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 736 milliseconds