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

  /src/sys/opencrypto/
ocryptodev.c 220 struct crypt_n_op cnop; local in function:ocryptodev_mop
222 cnop.ses = ocnop->ses;
223 cnop.op = ocnop->op;
224 cnop.flags = ocnop->flags;
225 cnop.len = ocnop->len;
226 cnop.reqid = ocnop->reqid;
227 cnop.status = ocnop->status;
228 cnop.opaque = ocnop->opaque;
229 cnop.keylen = ocnop->keylen;
230 cnop.key = ocnop->key
    [all...]
cryptodev.c 233 struct crypt_n_op *cnop; local in function:cryptof_ioctl
364 cnop = kmem_alloc((mop->count * sizeof(struct crypt_n_op)),
366 error = copyin(mop->reqs, cnop,
369 error = cryptodev_mop(fcr, cnop, mop->count, curlwp);
371 error = copyout(cnop, mop->reqs,
375 kmem_free(cnop, (mop->count * sizeof(struct crypt_n_op)));
1075 struct crypt_n_op * cnop,
1087 cse = csefind(fcr, cnop[req].ses);
1090 cnop[req].status = EINVAL;
1096 if (cnop[req].len > 256*1024-4)
    [all...]

Completed in 12 milliseconds