Lines Matching defs:sessionid
160 static struct nfsdsession *nfsrv_findsession(uint8_t *sessionid);
161 static int nfsrv_freesession(struct nfsdsession *sep, uint8_t *sessionid);
518 * Create a new sessionid here, since we need to do it where
5867 nfsrv_cache_session(uint8_t *sessionid, uint32_t slotid, int repstat,
5873 shp = NFSSESSIONHASH(sessionid);
5875 sep = nfsrv_findsession(sessionid);
5887 * Search for a session that matches the sessionid.
5890 nfsrv_findsession(uint8_t *sessionid)
5895 shp = NFSSESSIONHASH(sessionid);
5897 if (!NFSBCMP(sessionid, sep->sess_sessionid, NFSX_V4SESSIONID))
5907 nfsrv_destroysession(struct nfsrv_descript *nd, uint8_t *sessionid)
5912 if (!NFSBCMP(sessionid, nd->nd_sessionid, NFSX_V4SESSIONID)) {
5917 error = nfsrv_freesession(NULL, sessionid);
5927 nfsrv_freesession(struct nfsdsession *sep, uint8_t *sessionid)
5934 shp = NFSSESSIONHASH(sessionid);
5936 sep = nfsrv_findsession(sessionid);
6022 uint8_t sessionid[NFSX_V4SESSIONID];
6030 &slotseq, sessionid);
6035 bcopy(sessionid, tl, NFSX_V4SESSIONID);