HomeSort by relevance Sort by last modified time
    Searched defs:sessions (Results 1 - 11 of 11) 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);
  /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/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/bluetooth/bluez/audio/
avdtp.c 332 GSList *sessions; member in struct:avdtp_server
1151 server->sessions = g_slist_remove(server->sessions, session);
    [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/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...]
  /external/openssl/ssl/
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...]

Completed in 222 milliseconds