/src/lib/libtelnet/ |
encrypt.h | 88 void (*session)(Session_Key *, int); member in struct:__anon0da87be00208
|
/src/sys/dev/marvell/ |
mvcesa.c | 190 * Allocate a new 'session' and return an encoded session id. 'sidp' 191 * contains our registration id, and should contain an encoded session 326 * Deallocate a session. 332 int session; local in function:mvcesa_freesession 335 session = MVCESA_SESSION(sid); 336 KASSERTMSG(session >= 0, "session=%d", session); 337 KASSERTMSG(session < sc->sc_nsessions, "session=%d nsessions=%d" 351 int session; local in function:mvcesa_process [all...] |
mvxpsec.c | 185 * Session management interface (OpenCrypto) 195 /* session management */ 208 /* session header manegement */ 436 /* Session */ 495 NULL, device_xname(sc->sc_dev), "New-Session"); 497 NULL, device_xname(sc->sc_dev), "Free-Session"); 912 * make DMA descriptors to copy session header: DRAM -> SRAM 913 * we can reuse session header on SRAM if session is not changed. 1005 /* sync session header * 1569 int session; local in function:mvxpsec_session_lookup 1869 int session = -1; local in function:mvxpsec_newsession 2028 int session; local in function:mvxpsec_freesession [all...] |
/src/usr.sbin/isibootd/ |
isibootd.c | 87 struct session { struct 88 struct session *next; 108 static struct session *search(uint8_t *); 109 static void closedown(struct session *); 129 struct session *cp; 277 struct session * 280 struct session *cp; 300 closedown(struct session *cp) 302 struct session *cpp; 326 struct session *cp [all...] |
/src/sys/dev/iscsi/ |
iscsi_ioctl.c | 44 static uint16_t current_id = 0; /* Global session ID counter */ 249 * sid The ID of the affected session 382 * Find a session by ID. 384 * Parameter: the session ID 386 * Returns: The pointer to the session (or NULL if not found) 408 * Parameter: the session pointer and the connection ID 429 * Reference a session 431 * Session cannot be release until reference count reaches zero 454 * Unreference a session 456 * Release session reference, trigger cleanu 1194 session_t *session; local in function:logout 1227 session_t *session; local in function:add_connection 1260 session_t *session; local in function:remove_connection 1349 session_t *session; local in function:io_command [all...] |
/src/sys/kern/ |
uipc_mbufdebug.c | 72 uint16_t session; member in struct:pppoehdr 85 #define PPPOE_CODE_PADS 0x65 /* Active Discovery Session confirmation */ 348 (*pr)("PPPoE: Session = 0x%04x\n", ntohs(ph.session));
|
kern_proc.c | 132 * (an orphaned pgrp will lock the slot, a session will lock 192 struct session session0 = { 582 * Session reference counting. 586 proc_sesshold(struct session *ss) 594 proc_sessrele(struct session *ss) 602 * We keep the pgrp with the same id as the session in order to 604 * a reference to the session, it must be a 'zombie' pgrp by now. 618 kmem_free(ss, sizeof(struct session)); 622 * Check that the specified process group is in the session of the 631 struct session *session local in function:pgid_in_session [all...] |
/src/sbin/iscsid/ |
iscsid_globals.h | 322 session_t *session; /* back pointer to the owning session */ member in struct:connection_s 332 Per session data: the session structure 340 iscsi_login_session_type_t login_type; /* session type */ 347 /* the session list type */ 372 extern pthread_mutex_t sesslist_lock; /* session list lock */ 390 /* Session list protection shortcuts */ 418 #define find_connection_id(session, id) \ 419 (connection_t *)(void *)find_id(&session->connections, id [all...] |
iscsid.h | 318 a single logon session. A value of 0 indicates that there no limit 328 Specifies the desired error recovery level for the session. 684 Contains the session ID for this connection. Must be 0 for login, a valid 685 session ID for add_connection. 689 Optional unique non-numeric symbolic session (or connection) name. 692 indicates the type of logon session (discovery, non-mapped, or 703 Receives an integer that identifies the session. 733 Contains an integer that identifies the session. 758 Contains the session identifier. 762 The number of active connections in this session 771 iscsid_session_list_entry_t session[1]; member in struct:__anonacab674b2208 [all...] |
/src/sys/dev/pci/ |
hifn7751.c | 2068 * Allocate a new 'session' and return an encoded session id. 'sidp' 2069 * contains our registration id, and should contain an encoded session 2142 * Deallocate a session. 2150 int session; local in function:hifn_freesession 2154 session = HIFN_SESSION(sid); 2155 KASSERTMSG(session >= 0, "session=%d", session); 2156 KASSERTMSG(session < sc->sc_maxses, "session=%d maxses=%d" 2168 int session, err = 0, ivlen; local in function:hifn_process [all...] |
ubsec.c | 950 * Allocate a new 'session' and return an encoded session id. 'sidp' 951 * contains our registration id, and should contain an encoded session 1100 * Deallocate a session. 1106 int session; local in function:ubsec_freesession 1109 session = UBSEC_SESSION(sid); 1110 KASSERTMSG(session >= 0, "session=%d", session); 1111 KASSERTMSG(session < sc->sc_nsessions, "session=%d nsessions=%d" [all...] |
hifn7751reg.h | 472 volatile u_int16_t session; member in struct:hifn_base_result
|
/src/dist/pf/usr.sbin/ftp-proxy/ |
ftp-proxy.c | 76 struct session { struct 93 LIST_ENTRY(session) entry; 96 LIST_HEAD(, session) sessions = LIST_HEAD_INITIALIZER(sessions); 99 int client_parse(struct session *s); 100 int client_parse_anon(struct session *s); 101 int client_parse_cmd(struct session *s); 104 void end_session(struct session *); 109 struct session * init_session(void); 115 int server_parse(struct session *s); 116 int allow_data_connection(struct session *s) [all...] |
/src/sys/sys/ |
proc.h | 104 * One structure allocated per session. 106 struct session { struct 107 int s_count; /* Ref cnt; pgrps in session */ 109 #define S_LOGIN_SET 1 /* s_login set in this session */ 110 struct proc *s_leader; /* Session leader */ 114 pid_t s_sid; /* Session ID (pid of leader) */ 122 struct session *pg_session; /* Pointer to session */ 512 void proc_sesshold(struct session *); 513 void proc_sessrele(struct session *); [all...] |
/src/sys/net/ |
if_pppoe.c | 86 uint16_t session; member in struct:pppoehdr 105 #define PPPOE_TAG_RELAYSID 0x0110 /* relay session id */ 114 #define PPPOE_CODE_PADS 0x65 /* Active Discovery Session confirmation */ 175 int sc_state; /* discovery phase or session connected */ 177 uint16_t sc_session; /* PPPoE session id */ 189 callout_t sc_timeout; /* timeout while not in session state */ 504 * Find the interface handling the specified session. 510 pppoe_find_softc_by_session(u_int session, struct ifnet *rcvif, krw_t lock) 514 if (session == 0) 520 && sc->sc_session == session 631 uint16_t session, plen; local in function:pppoe_dispatch_disc_pkt 1127 uint16_t session, plen; local in function:pppoe_data_input [all...] |