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

  /src/sys/opencrypto/
ocryptodev.c 221 struct crypt_n_op cnop; local
223 cnop.ses = ocnop->ses;
224 cnop.op = ocnop->op;
225 cnop.flags = ocnop->flags;
226 cnop.len = ocnop->len;
227 cnop.reqid = ocnop->reqid;
228 cnop.status = ocnop->status;
229 cnop.opaque = ocnop->opaque;
230 cnop.keylen = ocnop->keylen;
231 cnop.key = ocnop->key
    [all...]
cryptodev.c 343 struct crypt_n_op *cnop; local
442 MIN(CRYPTODEV_OPS_MAX, SIZE_MAX/sizeof(*cnop))) {
446 len = mop->count * sizeof(*cnop);
447 cnop = kmem_alloc(len, KM_SLEEP);
448 error = copyin(mop->reqs, cnop, len);
450 error = cryptodev_mop(fcr, cnop, mop->count, curlwp);
452 error = copyout(cnop, mop->reqs, len);
455 kmem_free(cnop, len);
1132 struct crypt_n_op * cnop,
1145 cse = cse_find(fcr, cnop[req].ses)
    [all...]

Completed in 15 milliseconds