Lines Matching defs:cbp
997 callbparams_t *cbp;
1007 cbp = callbparams_alloc(sq, func, arg, KM_NOSLEEP | KM_PANIC);
1013 cbp->cbp_flags = SQ_CANCEL_TOUT;
1015 tid = timeout(qcallbwrapper, cbp, tim);
1016 cbp->cbp_id = (callbparams_id_t)tid;
1018 /* use local id because the cbp memory could be free by now */
1026 callbparams_t *cbp;
1034 cbp = callbparams_alloc(sq, func, arg, KM_NOSLEEP);
1035 if (cbp == NULL)
1043 cbp->cbp_flags = SQ_CANCEL_BUFCALL;
1045 bid = bufcall(size, pri, qcallbwrapper, cbp);
1046 cbp->cbp_id = (callbparams_id_t)bid;
1048 callbparams_free(sq, cbp);