| /src/external/bsd/tmux/dist/ |
| cmd-rename-session.c | 72 RB_REMOVE(sessions, &sessions, s); 75 RB_INSERT(sessions, &sessions, s);
|
| session.c | 29 struct sessions sessions; variable in typeref:struct:sessions 45 RB_GENERATE(sessions, session, entry, session_cmp); 56 * sessions list. 63 RB_FOREACH(s_loop, sessions, &sessions) { 77 return (RB_FIND(sessions, &sessions, &s)); 102 RB_FOREACH(s, sessions, &sessions) { [all...] |
| cmd-kill-session.c | 60 RB_FOREACH_SAFE(sloop, sessions, &sessions, stmp) {
|
| cmd-list-sessions.c | 28 * List all sessions. 42 .name = "list-sessions", 68 RB_FOREACH(s, sessions, &sessions) {
|
| server-fn.c | 64 TAILQ_FOREACH(s, &sg->sessions, gentry) 88 TAILQ_FOREACH(s, &sg->sessions, gentry) 126 RB_FOREACH(s, sessions, &sessions) { 201 RB_FOREACH_SAFE(s, sessions, &sessions, s1) { 227 TAILQ_FOREACH(s, &sg->sessions, gentry) 239 RB_FOREACH(s, sessions, &sessions) 254 xasprintf(cause, "sessions are grouped") [all...] |
| cmd-list-windows.c | 80 RB_FOREACH(s, sessions, &sessions)
|
| cmd-list-panes.c | 73 RB_FOREACH(s, sessions, &sessions)
|
| server.c | 214 RB_INIT(&sessions); 284 if (!RB_EMPTY(&sessions)) 326 RB_FOREACH_SAFE(s, sessions, &sessions, s1) 330 /* Update socket execute permissions based on whether sessions are attached. */ 340 RB_FOREACH(s, sessions, &sessions) {
|
| cfg.c | 263 s = RB_MIN(sessions, &sessions);
|
| cmd-attach-session.c | 65 if (RB_EMPTY(&sessions)) { 66 cmdq_error(item, "no sessions"); 74 cmdq_error(item, "sessions should be nested with care, "
|
| cmd-find.c | 157 log_debug("%s: %u sessions to try", __func__, ssize); 166 RB_FOREACH(s_loop, sessions, &sessions) { 185 RB_FOREACH(s, sessions, &sessions) { 281 RB_FOREACH(s_loop, sessions, &sessions) { 295 RB_FOREACH(s_loop, sessions, &sessions) { 887 * to limit the list of sessions to those containing that pane [all...] |
| resize.c | 436 RB_FOREACH(s, sessions, &sessions) {
|
| /src/crypto/external/bsd/heimdal/sbin/kcm/ |
| Makefile | 26 sessions.c
|
| /src/sys/opencrypto/ |
| ocryptodev.h | 160 struct osession_n_op * sessions; member in struct:ocrypt_sgop
|
| ocryptodev.c | 140 error = copyin(osgop->sessions, osnop, osgop->count * 151 error = copyout(osnop, osgop->sessions, osgop->count *
|
| cryptodev.h | 263 struct session_n_op * sessions; member in struct:crypt_sgop
|
| /src/sbin/init/ |
| init.c | 183 static session_t *sessions; variable 1120 sessions = sp; 1168 * Walk the list of ttys and create sessions for each active line. 1178 if (sessions == NULL) { 1200 for (sp = sessions; sp; sp = snext) { 1208 sessions = NULL; 1397 if (sessions == NULL) 1424 if (! sessions) 1438 sessions = sp->se_next; 1504 for (sp = sessions; sp; sp = sp->se_next) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/ssl/ |
| ssl_sess.c | 252 * 2^256 SSL sessions to our server. How you might store that many sessions 272 * creation of sessions with identical IDs since we currently don't have 436 ret = lh_SSL_SESSION_retrieve(s->session_ctx->sessions, &data); 497 * - Both for new and resumed sessions, s->ext.ticket_expected is set to 1 653 s = lh_SSL_SESSION_insert(ctx->sessions, c); 658 * ctx->sessions), or we're in trouble. 672 lh_SSL_SESSION_retrieve(ctx->sessions, c) == NULL) { 727 if ((r = lh_SSL_SESSION_retrieve(ctx->sessions, c)) != NULL) { 729 r = lh_SSL_SESSION_delete(ctx->sessions, r) [all...] |
| /src/crypto/external/bsd/openssh/dist/ |
| session.c | 138 static Session *sessions = NULL; variable 666 * it to the user, otherwise multiple sessions may accumulate 1510 memset(&sessions[id], 0, sizeof(*sessions)); 1511 sessions[id].self = id; 1512 sessions[id].used = 0; 1513 sessions[id].chanid = -1; 1514 sessions[id].ptyfd = -1; 1515 sessions[id].ttyfd = -1; 1516 sessions[id].ptymaster = -1 [all...] |
| /src/crypto/external/bsd/openssl/dist/ssl/ |
| ssl_sess.c | 346 * 2^256 SSL sessions to our server. How you might store that many sessions 366 * creation of sessions with identical IDs since we currently don't have 534 ret = lh_SSL_SESSION_retrieve(s->session_ctx->sessions, &data); 602 * - Both for new and resumed sessions, s->ext.ticket_expected is set to 1 759 s = lh_SSL_SESSION_insert(ctx->sessions, c); 764 * ctx->sessions), or we're in trouble. 778 lh_SSL_SESSION_retrieve(ctx->sessions, c) == NULL) { 842 if ((r = lh_SSL_SESSION_retrieve(ctx->sessions, c)) != NULL) { 844 r = lh_SSL_SESSION_delete(ctx->sessions, r) [all...] |
| /src/crypto/external/apache2/openssl/dist/ssl/ |
| ssl_sess.c | 316 * 2^256 SSL sessions to our server. How you might store that many sessions 340 * creation of sessions with identical IDs since we currently don't have 511 ret = lh_SSL_SESSION_retrieve(s->session_ctx->sessions, &data); 582 * - Both for new and resumed sessions, s->ext.ticket_expected is set to 1 743 s = lh_SSL_SESSION_insert(ctx->sessions, c); 748 * ctx->sessions), or we're in trouble. 761 } else if (s == NULL && lh_SSL_SESSION_retrieve(ctx->sessions, c) == NULL) { 825 if ((r = lh_SSL_SESSION_retrieve(ctx->sessions, c)) != NULL) { 827 r = lh_SSL_SESSION_delete(ctx->sessions, r) [all...] |
| /src/external/ibm-public/postfix/dist/src/smtpstone/ |
| qmqp-source.c | 54 /* Run the specified number of QMQP sessions in parallel (default: 1). 471 int sessions = 1; local 538 if ((sessions = atoi(optarg)) <= 0) 654 * Start sessions. 656 while (sessions-- > 0) {
|
| /src/dist/pf/usr.sbin/ftp-proxy/ |
| ftp-proxy.c | 96 LIST_HEAD(, session) sessions = LIST_HEAD_INITIALIZER(sessions); 339 for (s = LIST_FIRST(&sessions); s != LIST_END(&sessions); s = next) { 570 LIST_INSERT_HEAD(&sessions, s, entry); 677 errx(1, "max sessions %s", errstr); 729 /* Raise max. open files limit to satisfy max. sessions. */
|
| /src/external/mpl/dhcp/bind/dist/lib/isc/ |
| pk11.c | 74 pk11_sessionlist_t sessions; member in struct:pk11_token 328 freelist = &token->sessions; 381 ISC_LIST_APPEND(sp->token->sessions, sp, link); 394 oret = free_session_list(&token->sessions); 525 ISC_LIST_INIT(token->sessions);
|
| /src/external/bsd/wpa/dist/src/radius/ |
| radius_server.c | 34 * RADIUS_MAX_SESSION - Maximum number of active sessions 111 struct radius_session *sessions; member in struct:radius_client 155 * num_sess - Number of active sessions 373 struct radius_session *sess = client->sessions; 411 session = client->sessions; 415 client->sessions = sess->next; 467 sess->next = client->sessions; 468 client->sessions = sess; 2003 struct radius_session *sessions) 2007 session = sessions; [all...] |