/third_party/pulseaudio/src/modules/ |
D | module-systemd-login.c | 58 pa_hashmap *sessions, *previous_sessions; member 84 pa_hashmap_put(u->sessions, session->id, session); in add_session() 116 char **sessions; in get_session_list() local 122 r = sd_uid_get_sessions(getuid(), 0, &sessions); in get_session_list() 130 u->previous_sessions = u->sessions; in get_session_list() 131 u->sessions = h; in get_session_list() 133 if (sessions) { in get_session_list() 140 for (s = sessions; *s; s++) { in get_session_list() 143 pa_hashmap_put(u->sessions, o->id, o); in get_session_list() 150 free(sessions); in get_session_list() [all …]
|
D | module-console-kit.c | 58 pa_hashmap *sessions; member 71 if (pa_hashmap_get(u->sessions, id)) { in add_session() 117 pa_hashmap_put(u->sessions, session->id, session); in add_session() 159 pa_hashmap_remove_and_free(u->sessions, id); in remove_session() 308 …u->sessions = pa_hashmap_new_full(pa_idxset_string_hash_func, pa_idxset_string_compare_func, NULL,… in pa__init() 350 if (u->sessions) in pa__done() 351 pa_hashmap_free(u->sessions); in pa__done()
|
/third_party/skia/third_party/externals/microhttpd/doc/chapters/ |
D | sessions.inc | 1 This chapter discusses how one should manage sessions, that is, share state between multiple 5 many concurrent sessions at the same time. 47 server must thus discard inactive sessions at some point. Our example 48 implements this by discarding inactive sessions after a certain amount 50 of active sessions. Which bounds are used for idle sessions or the 51 total number of sessions obviously depends largely on the type of 59 as the example @code{sessions.c}. 62 look up sessions and to expire old sessions. Using a hash table and a 64 sessions is expected. 70 associated with long-time idle sessions (where the business process
|
/third_party/openssl/doc/man3/ |
D | SSL_CTX_sess_number.pod | 26 SSL_CTX_sess_number() returns the current number of sessions in the internal 33 SSL/TLS sessions in client mode. 42 SSL/TLS sessions in server mode. 47 SSL_CTX_sess_hits() returns the number of successfully reused sessions. 52 SSL_CTX_sess_cb_hits() returns the number of successfully retrieved sessions 55 SSL_CTX_sess_misses() returns the number of sessions proposed by clients 58 SSL_CTX_sess_timeouts() returns the number of sessions proposed by clients 60 but that were invalid due to timeout. These sessions are not included in 63 SSL_CTX_sess_cache_full() returns the number of sessions that were removed
|
D | SSL_CTX_flush_sessions.pod | 5 SSL_CTX_flush_sessions - remove expired sessions 16 B<ctx> to remove sessions expired at time B<tm>. 20 If enabled, the internal session cache will collect all sessions established 22 As sessions will not be reused ones they are expired, they should be 24 automatically whenever 255 new sessions were established (see 32 SSL_CTX_flush_sessions() will only check sessions stored in the internal
|
D | SSL_CTX_set_session_cache_mode.pod | 23 The OpenSSL library can store/retrieve SSL/TLS sessions for later reuse. 24 The sessions can be held in memory for each B<ctx>, if more than one 25 SSL_CTX object is being maintained, the sessions are unique for each SSL_CTX 52 Client sessions are added to the session cache. As there is no reliable way 61 Server sessions are added to the session cache. When a client proposes a 73 Normally the session cache is checked for expired sessions every 84 automatically look up sessions in the internal cache, even if sessions are 93 sessions negotiated in an SSL/TLS handshake may be cached for possible reuse. 96 prevent sessions being stored in the internal cache (though the application can
|
D | SSL_CTX_sess_set_cache_size.pod | 25 currently 1024*20, so that up to 20000 sessions can be held. This size 30 sessions are dropped from the end of the cache. 33 expired sessions. 35 If the size of the session cache is reduced and more sessions are already 38 expiration of sessions.
|
D | SSL_CTX_set_timeout.pod | 16 SSL_CTX_set_timeout() sets the timeout for newly created sessions for 28 Due to this realization, all sessions behave according to the timeout value 30 do not affect already established sessions. 35 Expired sessions are removed from the internal session cache, whenever
|
D | SSL_CTX_add_session.pod | 29 it is assumed that both sessions are identical. If the same session is 37 sessions negotiated by the SSL/TLS implementation, even though the internal 41 over the sessions that can be resumed if desired.
|
D | SSL_CTX_sessions.pod | 20 The sessions in the internal session cache are kept in an 22 access this database e.g. for searching. In parallel, the sessions
|
D | SSL_CTX_set_session_id_context.pod | 27 sessions with B<i2d_SSL_SESSION>/B<d2i_SSL_SESSION> it would be possible, 31 the contexts and is stored in exported sessions. The B<sid_ctx> can be 50 certificates are used, stored sessions
|
/third_party/libwebsockets/READMEs/ |
D | README.tls-sessions.md | 9 TLS specifies logical "sessions" that get "established" on both sides when the 15 so multiple connections to the same endpoint each negotiate fresh sessions from 18 However tls servers typically maintain a cache of recent sessions, and where 23 ### Re-use of validated sessions 36 ### Multiple concurrent use of validated sessions 45 TLS also supports sessions as bearer tokens, but these are generally considered 54 MRU-sorted list of established sessions. 56 It's also possible to serialize sessions and save and load them, but this has to 78 Internally sessions are referred to by a vhostname.hostname.port tuple. 89 The Time-To-Live policy for sessions at the client can be set in seconds at [all …]
|
/third_party/gstreamer/gstplugins_bad/sys/dvb/ |
D | camapplication.c | 155 application->sessions = NULL; in _cam_al_application_init() 161 g_list_free (application->sessions); in _cam_al_application_destroy() 262 application->sessions = g_list_append (application->sessions, session); in open_session_request_cb() 296 for (walk = application->sessions; walk; walk = g_list_next (walk)) { in session_closed_cb() 300 application->sessions = g_list_delete_link (application->sessions, walk); in session_closed_cb()
|
D | camsession.c | 67 sl->sessions = g_hash_table_new_full (g_direct_hash, g_direct_equal, in cam_sl_new() 79 g_hash_table_destroy (sl->sessions); in cam_sl_destroy() 356 g_hash_table_insert (sl->sessions, in handle_open_session_request() 403 session = g_hash_table_lookup (sl->sessions, in handle_create_session_response() 452 session = g_hash_table_lookup (sl->sessions, in handle_close_session_request() 479 g_hash_table_remove (sl->sessions, in handle_close_session_request() 513 session = g_hash_table_lookup (sl->sessions, in handle_close_session_response() 525 g_hash_table_remove (sl->sessions, in handle_close_session_response() 552 session = g_hash_table_lookup (sl->sessions, in handle_session_data()
|
/third_party/nghttp2/src/ |
D | HttpServer.cc | 431 auto sessions = static_cast<Sessions *>(w->data); in release_fd_cb() local 435 if (!sessions->handlers_empty()) { in release_fd_cb() 439 sessions->release_unused_fd(); in release_fd_cb() 462 auto sessions = handler->get_sessions(); in ~Stream() local 463 sessions->release_fd(file_ent); in ~Stream() 526 Http2Handler::Http2Handler(Sessions *sessions, int fd, SSL *ssl, in Http2Handler() argument 530 sessions_(sessions), in Http2Handler() 1122 auto sessions = hd->get_sessions(); in prepare_status_response() local 1123 auto status_page = sessions->get_server()->get_status_page(status); in prepare_status_response() 1175 auto sessions = hd->get_sessions(); in prepare_upload_temp_store() local [all …]
|
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/ |
D | gstrtpbin.c | 560 for (walk = rtpbin->sessions; walk; walk = g_slist_next (walk)) { in find_session_by_id() 581 for (walk = rtpbin->sessions; walk; walk = g_slist_next (walk)) { in find_session_by_pad() 755 rtpbin->sessions = g_slist_prepend (rtpbin->sessions, sess); in create_session() 1043 GSList *sessions, *streams; in gst_rtp_bin_clear_pt_map() local 1047 for (sessions = bin->sessions; sessions; sessions = g_slist_next (sessions)) { in gst_rtp_bin_clear_pt_map() 1048 GstRtpBinSession *session = (GstRtpBinSession *) sessions->data; in gst_rtp_bin_clear_pt_map() 1189 GSList *sessions, *streams; in gst_rtp_bin_propagate_property_to_jitterbuffer() local 1192 for (sessions = bin->sessions; sessions; sessions = g_slist_next (sessions)) { in gst_rtp_bin_propagate_property_to_jitterbuffer() 1193 GstRtpBinSession *session = (GstRtpBinSession *) sessions->data; in gst_rtp_bin_propagate_property_to_jitterbuffer() 1216 GSList *sessions; in gst_rtp_bin_propagate_property_to_session() local [all …]
|
/third_party/libcoap/man/ |
D | coap_context.txt.in | 85 idle server sessions to _max_idle_sessions_ for _context_. If this number is 87 initial default) means that the number of idle sessions is not monitored. 90 of idle server sessions for _context_. 93 number of outstanding server sessions in (D)TLS handshake to 99 number of outstanding server sessions in (D)TLS handshake for _context_. 121 server sessions. 124 outstanding server sessions in (D)TLS handshake.
|
/third_party/node/test/parallel/ |
D | test-tls-client-resume.js | 49 let sessions = 0; 76 console.log('client1 session#', ++sessions); 81 assert.strictEqual(sessions, tls13 ? 2 : 1);
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
D | libmicrohttpd-tutorial.texi | 106 @include chapters/sessions.inc 129 * sessions.c:: 169 @node sessions.c 170 @section sessions.c 172 @verbatiminclude examples/sessions.c
|
/third_party/skia/third_party/externals/microhttpd/doc/examples/ |
D | sessions.c | 159 static struct Session *sessions; variable 180 ret = sessions; in get_session() 211 ret->next = sessions; in get_session() 212 sessions = ret; in get_session() 692 pos = sessions; in expire_sessions() 700 sessions = pos->next; in expire_sessions()
|
D | Makefile.am | 25 noinst_PROGRAMS += simplepost largepost sessions program 53 sessions.c
|
/third_party/skia/third_party/externals/microhttpd/src/examples/ |
D | post_example.c | 137 static struct Session *sessions; variable 158 ret = sessions; in get_session() 189 ret->next = sessions; in get_session() 190 sessions = ret; in get_session() 675 pos = sessions; in expire_sessions() 683 sessions = pos->next; in expire_sessions()
|
/third_party/popt/tests/test3-data/ |
D | 03.answer | 1 single string: ' --confversion="1.0.0.0" --expires="19:57:56 03/16/01" --sessions="-1" --hostid="72… 5 '--sessions=-1'
|
/third_party/openssl/ssl/ |
D | ssl_sess.c | 436 ret = lh_SSL_SESSION_retrieve(s->session_ctx->sessions, &data); in lookup_sess_in_cache() 653 s = lh_SSL_SESSION_insert(ctx->sessions, c); in SSL_CTX_add_session() 672 lh_SSL_SESSION_retrieve(ctx->sessions, c) == NULL) { in SSL_CTX_add_session() 727 if ((r = lh_SSL_SESSION_retrieve(ctx->sessions, c)) != NULL) { in remove_session_lock() 729 r = lh_SSL_SESSION_delete(ctx->sessions, r); in remove_session_lock() 1075 tp.cache = s->sessions; in SSL_CTX_flush_sessions() 1080 i = lh_SSL_SESSION_get_down_load(s->sessions); in SSL_CTX_flush_sessions() 1081 lh_SSL_SESSION_set_down_load(s->sessions, 0); in SSL_CTX_flush_sessions() 1083 lh_SSL_SESSION_set_down_load(s->sessions, i); in SSL_CTX_flush_sessions()
|
/third_party/libcoap/src/ |
D | coap_session.c | 241 if (session->endpoint->sessions) in coap_session_free() 242 SESSIONS_DELETE(session->endpoint->sessions, session); in coap_session_free() 244 if (session->context->sessions) in coap_session_free() 245 SESSIONS_DELETE(session->context->sessions, session); in coap_session_free() 636 SESSIONS_FIND(endpoint->sessions, addr_hash, session); in coap_endpoint_get_session() 645 SESSIONS_ITER(endpoint->sessions, session, rtmp) { in coap_endpoint_get_session() 754 SESSIONS_ADD(endpoint->sessions, session); in coap_endpoint_get_session() 883 SESSIONS_ADD(ctx->sessions, session); in coap_session_create_client() 1203 SESSIONS_ADD(ep->sessions, session); in coap_new_server_session() 1399 SESSIONS_ITER_SAFE(ep->sessions, session, rtmp) { in coap_free_endpoint() [all …]
|