/src/sys/arch/x86/x86/ |
via_padlock.c | 133 struct via_padlock_session *ses = NULL; local in function:via_padlock_crypto_newsession 139 ses = sc->sc_sessions = malloc(sizeof(*ses), M_DEVBUF, 141 if (ses == NULL) 148 ses = &sc->sc_sessions[sesn]; 153 if (ses == NULL) { 155 ses = malloc((sesn + 1) * sizeof(*ses), M_DEVBUF, 157 if (ses == NULL) 159 memcpy(ses, sc->sc_sessions, sesn * sizeof(*ses)) 457 struct via_padlock_session *ses; local in function:via_padlock_crypto_process [all...] |
/src/sys/opencrypto/ |
ocryptodev.h | 98 u_int32_t ses; /* returns: session # */ member in struct:osession_op 110 u_int32_t ses; /* returns: session # */ member in struct:osession_n_op 115 u_int32_t ses; member in struct:ocrypt_op 140 u_int32_t ses; member in struct:ocrypt_n_op
|
cryptodev.c | 108 u_int32_t ses; member in struct:csession 239 u_int32_t ses; local in function:cryptof_ioctl 312 ses = *(u_int32_t *)data; 313 cse = csefind(fcr, ses); 345 cse = csefind(fcr, cop->ses); 915 struct csession *cryptodev_csefind(struct fcrypt *fcr, u_int ses) 917 return csefind(fcr, ses); 922 csefind(struct fcrypt *fcr, u_int ses) 928 if (cse->ses == ses) [all...] |
crypto.c | 1156 u_int32_t ses; local in function:crypto_unregister_locked 1183 ses = cap->cc_sessions; 1185 if (ses != 0) { 1190 cap->cc_sessions = ses;
|
cryptodev.h | 171 u_int32_t ses; /* returns: session # */ member in struct:session_op 186 u_int32_t ses; /* returns: session # */ member in struct:session_n_op 191 u_int32_t ses; member in struct:crypt_op 222 u_int32_t ses; member in struct:crypt_n_op
|
/src/sys/dev/marvell/ |
mvcesa.c | 199 struct mvcesa_session *ses = NULL; local in function:mvcesa_newsession 208 ses = sc->sc_sessions + sesn; 212 if (ses == NULL) { 214 ses = malloc((sesn + 1) * sizeof(*ses), M_DEVBUF, M_NOWAIT); 215 if (ses == NULL) 218 memcpy(ses, sc->sc_sessions, sesn * sizeof(*ses)); 219 memset(sc->sc_sessions, 0, sesn * sizeof(*ses)); 222 sc->sc_sessions = ses; 347 struct mvcesa_session *ses; local in function:mvcesa_process [all...] |
/src/sys/netipsec/ |
xform_ipcomp.c | 103 int ses; local in function:ipcomp_init 120 ses = crypto_newsession(&sav->tdb_cryptoid, &cric, crypto_support); 121 return ses;
|
/src/sys/arch/i386/pci/ |
glxsb.c | 178 #define GLXSB_SID(crd,ses) (((crd) << 28) | ((ses) & 0x0fffffff)) 314 struct glxsb_session *ses = NULL; local in function:glxsb_crypto_newsession 323 ses = &sc->sc_sessions[sesn]; 328 if (ses == NULL) { 330 ses = malloc((sesn + 1) * sizeof(*ses), M_DEVBUF, M_NOWAIT); 331 if (ses == NULL) 334 memcpy(ses, sc->sc_sessions, sesn * sizeof(*ses)); 443 struct glxsb_session *ses; local in function:glxsb_crypto_process [all...] |
/src/sys/dev/pci/ |
ubsec.c | 959 struct ubsec_session *ses = NULL; local in function:ubsec_newsession 994 ses = sc->sc_sessions = (struct ubsec_session *)malloc( 996 if (ses == NULL) 1003 ses = &sc->sc_sessions[sesn]; 1008 if (ses == NULL) { 1010 ses = (struct ubsec_session *)malloc((sesn + 1) * 1012 if (ses == NULL) 1014 memcpy(ses, sc->sc_sessions, sesn * 1019 sc->sc_sessions = ses; 1020 ses = &sc->sc_sessions[sesn] 1147 struct ubsec_session *ses, key; local in function:ubsec_process [all...] |
mlyreg.h | 212 u_int8_t ses:1; /* N/A */ member in struct:mly_param_controller
|