| /freebsd/crypto/openssl/test/ |
| H A D | tls13ccstest.c | 93 PACKET pkt, msg, msgbody, sessionid; in watchccs_write() local 127 || !PACKET_get_length_prefixed_1(&msgbody, &sessionid)) in watchccs_write() 134 chsessidlen = PACKET_remaining(&sessionid); in watchccs_write() 135 if (!PACKET_copy_bytes(&sessionid, chsessid, chsessidlen)) in watchccs_write() 142 if (PACKET_remaining(&sessionid) != chsessidlen in watchccs_write() 144 && memcmp(chsessid, PACKET_data(&sessionid), in watchccs_write() 156 || !PACKET_get_length_prefixed_1(&msgbody, &sessionid)) in watchccs_write() 163 if (PACKET_remaining(&sessionid) != chsessidlen in watchccs_write() 165 && memcmp(chsessid, PACKET_data(&sessionid), in watchccs_write()
|
| H A D | asynciotest.c | 149 PACKET payload, wholebody, sessionid, extensions; in async_write() local 175 &sessionid) in async_write()
|
| /freebsd/usr.sbin/ppp/ |
| H A D | ether.c | 220 char *end, unknown[14], sessionid[5]; in ether_MessageIn() local 277 snprintf(sessionid, sizeof sessionid, "%04x", *(u_int16_t *)sts); in ether_MessageIn() 278 if (setenv("SESSIONID", sessionid, 1) != 0) in ether_MessageIn() 280 sessionid); in ether_MessageIn() 282 slot = strtoul(sessionid, &end, 16); in ether_MessageIn() 283 if (end != sessionid && *end == '\0') in ether_MessageIn() 447 char *path, *sessionid; in ether_Create() local 719 if ((sessionid = getenv("SESSIONID")) != NULL) { in ether_Create() 723 slot = strtoul(sessionid, &end, 16); in ether_Create() 724 dev->slot = end != sessionid && *end == '\0' ? slot : 0; in ether_Create()
|
| /freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/ |
| H A D | tst.sid.ksh | 72 sessionid=`ps -x -o pid,sid | grep "$$ " | awk '{print $2}' 2>/dev/null` 78 $dfilename $sessionid >/dev/null 2>&1
|
| /freebsd/libexec/pppoed/ |
| H A D | pppoed.c | 261 char env[18], unknown[14], sessionid[5], *path; in Spawn() local 416 snprintf(sessionid, sizeof sessionid, "%04x", *(u_int16_t *)sts); in Spawn() 417 if (setenv("SESSIONID", sessionid, 1) != 0) in Spawn() 419 sessionid); in Spawn()
|
| /freebsd/sys/fs/nfs/ |
| H A D | nfscl.h | 85 uint8_t sessionid[NFSX_V4SESSIONID]; member
|
| H A D | nfs_commonkrpc.c | 690 uint8_t sessionid[NFSX_V4SESSIONID]; in newnfs_request() local 1282 sessionid, true); in newnfs_request() 1288 bcopy(sessionid, tl, in newnfs_request()
|
| H A D | nfs_commonsubs.c | 5276 uint8_t sessionid[NFSX_V4SESSIONID]; in nfsv4_setsequence() local 5280 &slotseq, sessionid, false); in nfsv4_setsequence() 5287 &slotseq, sessionid, true); in nfsv4_setsequence() 5294 bcopy(sessionid, tl, NFSX_V4SESSIONID); in nfsv4_setsequence() 5330 int *slotposp, int *maxslotp, uint32_t *slotseqp, uint8_t *sessionid, in nfsv4_sequencelookup() argument 5344 bcopy(sep->nfsess_sessionid, sessionid, in nfsv4_sequencelookup() 5395 bcopy(sep->nfsess_sessionid, sessionid, NFSX_V4SESSIONID); in nfsv4_sequencelookup()
|
| /freebsd/sys/dev/usb/net/ |
| H A D | mbim.h | 509 uint32_t sessionid; member 552 uint32_t sessionid; member 578 uint32_t sessionid; member
|
| H A D | if_umb.c | 1694 if (le32toh(ci->sessionid) != umb_session_id) { in umb_decode_connect_info() 1696 le32toh(ci->sessionid)); in umb_decode_connect_info() 1791 if (le32toh(ic->sessionid) != umb_session_id) { in umb_decode_ip_configuration() 1793 le32toh(ic->sessionid)); in umb_decode_ip_configuration() 2491 c->sessionid = htole32(umb_session_id); in umb_send_connect() 2519 ipc.sessionid = htole32(umb_session_id); in umb_qry_ipconfig()
|
| /freebsd/sys/fs/nfsclient/ |
| H A D | nfs_clstate.c | 3570 uint8_t sessionid[NFSX_V4SESSIONID]; in nfscl_docb() local 3654 mp = nfscl_getmnt(minorvers, sessionid, cbident, in nfscl_docb() 3722 clp = nfscl_getclntsess(sessionid); in nfscl_docb() 3768 clp = nfscl_getclntsess(sessionid); in nfscl_docb() 3816 clp = nfscl_getclntsess(sessionid); in nfscl_docb() 3846 clp = nfscl_getclntsess(sessionid); in nfscl_docb() 3879 bcopy(tl, sessionid, NFSX_V4SESSIONID); in nfscl_docb() 3898 clp = nfscl_getclntsess(sessionid); in nfscl_docb() 3928 bcopy(sessionid, tl, NFSX_V4SESSIONID); in nfscl_docb() 3940 clp = nfscl_getclntsess(sessionid); in nfscl_docb() [all …]
|
| H A D | nfs_clrpcops.c | 1133 memcpy(rcp->sessionid, in nfsrpc_setclient() 9890 memcpy(tl, rcp->sessionid, NFSX_V4SESSIONID); in nfsrpc_bindconnsess() 9925 if (!NFSBCMP(tl, rcp->sessionid, NFSX_V4SESSIONID)) { in nfsrpc_bindconnsess()
|
| /freebsd/sys/fs/nfsserver/ |
| H A D | nfs_nfsdstate.c | 210 static struct nfsdsession *nfsrv_findsession(uint8_t *sessionid); 212 uint8_t *sessionid, bool locked, SVCXPRT **old_xprtp); 6438 nfsrv_findsession(uint8_t *sessionid) in nfsrv_findsession() argument 6443 shp = NFSSESSIONHASH(sessionid); in nfsrv_findsession() 6445 if (!NFSBCMP(sessionid, sep->sess_sessionid, NFSX_V4SESSIONID)) in nfsrv_findsession() 6455 nfsrv_destroysession(struct nfsrv_descript *nd, uint8_t *sessionid) in nfsrv_destroysession() argument 6460 if (!NFSBCMP(sessionid, nd->nd_sessionid, NFSX_V4SESSIONID) && in nfsrv_destroysession() 6476 error = nfsrv_freesession(nd, NULL, sessionid, false, NULL); in nfsrv_destroysession() 6493 nfsrv_bindconnsess(struct nfsrv_descript *nd, uint8_t *sessionid, int *foreaftp) in nfsrv_bindconnsess() argument 6503 shp = NFSSESSIONHASH(sessionid); in nfsrv_bindconnsess() [all …]
|
| H A D | nfs_nfsdport.c | 4514 nfsrv_hashsessionid(uint8_t *sessionid) in nfsrv_hashsessionid() argument 4518 hashval = hash32_buf(sessionid, NFSX_V4SESSIONID, 0); in nfsrv_hashsessionid()
|