HomeSort by: relevance | last modified time | path
    Searched defs:ses (Results 1 - 12 of 12) sorted by relevancy

  /src/external/bsd/ppp/dist/pppd/plugins/pppoe/
plugin.c 198 int i, ses; local
200 &ses, &mac[0], &mac[1], &mac[2],
204 conn->session = htons(ses);
  /src/sys/arch/x86/x86/
via_padlock.c 133 struct via_padlock_session *ses = NULL; local
140 ses = sc->sc_sessions = malloc(sizeof(*ses), M_DEVBUF,
142 if (ses == NULL)
149 ses = &sc->sc_sessions[sesn];
154 if (ses == NULL) {
156 ses = malloc((sesn + 1) * sizeof(*ses), M_DEVBUF,
158 if (ses == NULL)
160 memcpy(ses, sc->sc_sessions, sesn * sizeof(*ses))
463 struct via_padlock_session *ses; local
    [all...]
  /src/sys/opencrypto/
ocryptodev.h 98 uint32_t ses; /* returns: session # */ member in struct:osession_op
110 uint32_t ses; /* returns: session # */ member in struct:osession_n_op
115 uint32_t ses; member in struct:ocrypt_op
140 uint32_t ses; member in struct:ocrypt_n_op
crypto.c 1156 uint32_t ses; local
1183 ses = cap->cc_sessions;
1185 if (ses != 0) {
1190 cap->cc_sessions = ses;
cryptodev.c 111 uint32_t ses; member in struct:csession
349 uint32_t ses; local
381 DPRINTF("create(%#x) error = %d\n", sop->ses, error);
404 ses = *(uint32_t *)data;
406 error = cse_delete(fcr, ses);
408 DPRINTF("destroy(%#x) error = %d\n", ses, error);
429 cse = cse_find(fcr, cop->ses);
431 DPRINTF("cse_find failed %#x\n", cop->ses);
955 cryptodev_cse_find(struct fcrypt *fcr, uint32_t ses)
957 return cse_find(fcr, ses);
    [all...]
cryptodev.h 171 uint32_t ses; /* returns: session # */ member in struct:session_op
186 uint32_t ses; /* returns: session # */ member in struct:session_n_op
191 uint32_t ses; member in struct:crypt_op
222 uint32_t ses; member in struct:crypt_n_op
  /src/tests/crypto/opencrypto/
h_thread.c 90 static atomic_uint_fast32_t ses = 0; variable
106 atomic_store_release(&ses, cs.ses);
108 atomic_store_relaxed(&ses, 0);
110 while (ioctl(fd, CIOCFSESSION, &cs.ses) == -1) {
132 while ((co.ses = atomic_load_acquire(&ses)) == 0) {
142 if (atomic_load_relaxed(&ses) == co.ses)
212 if (ioctl(fd, CIOCFSESSION, &ses) != -1
    [all...]
  /src/sys/dev/marvell/
mvcesa.c 199 struct mvcesa_session *ses = NULL; local
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
    [all...]
  /src/sys/netipsec/
xform_ipcomp.c 103 int ses; local
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
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
    [all...]
  /src/sys/dev/pci/
ubsec.c 959 struct ubsec_session *ses = NULL; local
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
    [all...]
mlyreg.h 212 u_int8_t ses:1; /* N/A */ member in struct:mly_param_controller

Completed in 66 milliseconds