Symbol: cpr
usr/src/cmd/captoinfo/captoinfo.c
283
(void) cpr(trace, bp);
usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/ikeadm.c
2830
ike_cky_pr_t cpr;
usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/ikeadm.c
2850
if (parse_cky_pr(argc, argv, &cpr) >= 0) {
usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/ikeadm.c
2853
idp = (char *)&cpr;
usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/ikeadm.c
867
parse_cky_pr(int argc, char **argv, ike_cky_pr_t *cpr)
usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/ikeadm.c
871
if ((rtn = parse_cky(argc, argv, &cpr->cky_i)) < 0) {
usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/ikeadm.c
878
if ((rtn = parse_cky(argc, argv, &cpr->cky_r)) < 0) {
usr/src/cmd/mandoc/mdoc_validate.c
484
const char *cp, *cpr;
usr/src/cmd/mandoc/mdoc_validate.c
500
for (cpr = cp - 1; cpr >= p; cpr--)
usr/src/cmd/mandoc/mdoc_validate.c
501
if (*cpr != '_' && !isalnum((unsigned char)*cpr))
usr/src/cmd/mandoc/mdoc_validate.c
503
if ((cpr < p || *cpr == ' ') && cpr + 1 < cp) {
usr/src/cmd/mandoc/mdoc_validate.c
504
cpr++;
usr/src/cmd/mandoc/mdoc_validate.c
505
mandoc_msg(MANDOCERR_FUNC, ln, pos + (int)(cpr - p),
usr/src/cmd/mandoc/mdoc_validate.c
506
"%.*s()", (int)(cp - cpr), cpr);
usr/src/lib/libcurses/screen/print.c
576
caplen += cpr(stdout, value);
usr/src/lib/libcurses/screen/print.h
50
extern int cpr(FILE *, char *);
usr/src/uts/common/fs/zfs/arc.c
8772
callb_cpr_t cpr;
usr/src/uts/common/fs/zfs/arc.c
8778
CALLB_CPR_INIT(&cpr, &l2arc_feed_thr_lock, callb_generic_cpr, FTAG);
usr/src/uts/common/fs/zfs/arc.c
8783
CALLB_CPR_SAFE_BEGIN(&cpr);
usr/src/uts/common/fs/zfs/arc.c
8786
CALLB_CPR_SAFE_END(&cpr, &l2arc_feed_thr_lock);
usr/src/uts/common/fs/zfs/arc.c
8858
CALLB_CPR_EXIT(&cpr); /* drops l2arc_feed_thr_lock */
usr/src/uts/common/fs/zfs/dbuf.c
561
callb_cpr_t cpr;
usr/src/uts/common/fs/zfs/dbuf.c
563
CALLB_CPR_INIT(&cpr, &dbuf_evict_lock, callb_generic_cpr, FTAG);
usr/src/uts/common/fs/zfs/dbuf.c
568
CALLB_CPR_SAFE_BEGIN(&cpr);
usr/src/uts/common/fs/zfs/dbuf.c
571
CALLB_CPR_SAFE_END(&cpr, &dbuf_evict_lock);
usr/src/uts/common/fs/zfs/dbuf.c
589
CALLB_CPR_EXIT(&cpr); /* drops dbuf_evict_lock */
usr/src/uts/common/fs/zfs/mmp.c
223
mmp_thread_enter(mmp_thread_t *mmp, callb_cpr_t *cpr)
usr/src/uts/common/fs/zfs/mmp.c
225
CALLB_CPR_INIT(cpr, &mmp->mmp_thread_lock, callb_generic_cpr, FTAG);
usr/src/uts/common/fs/zfs/mmp.c
230
mmp_thread_exit(mmp_thread_t *mmp, kthread_t **mpp, callb_cpr_t *cpr)
usr/src/uts/common/fs/zfs/mmp.c
235
CALLB_CPR_EXIT(cpr); /* drops &mmp->mmp_thread_lock */
usr/src/uts/common/fs/zfs/mmp.c
562
callb_cpr_t cpr;
usr/src/uts/common/fs/zfs/mmp.c
565
mmp_thread_enter(mmp, &cpr);
usr/src/uts/common/fs/zfs/mmp.c
680
CALLB_CPR_SAFE_BEGIN(&cpr);
usr/src/uts/common/fs/zfs/mmp.c
683
CALLB_CPR_SAFE_END(&cpr, &mmp->mmp_thread_lock);
usr/src/uts/common/fs/zfs/mmp.c
691
mmp_thread_exit(mmp, &mmp->mmp_thread, &cpr);
usr/src/uts/common/fs/zfs/txg.c
221
txg_thread_enter(tx_state_t *tx, callb_cpr_t *cpr)
usr/src/uts/common/fs/zfs/txg.c
223
CALLB_CPR_INIT(cpr, &tx->tx_sync_lock, callb_generic_cpr, FTAG);
usr/src/uts/common/fs/zfs/txg.c
228
txg_thread_exit(tx_state_t *tx, callb_cpr_t *cpr, kthread_t **tpp)
usr/src/uts/common/fs/zfs/txg.c
234
CALLB_CPR_EXIT(cpr); /* drops &tx->tx_sync_lock */
usr/src/uts/common/fs/zfs/txg.c
239
txg_thread_wait(tx_state_t *tx, callb_cpr_t *cpr, kcondvar_t *cv, clock_t time)
usr/src/uts/common/fs/zfs/txg.c
241
CALLB_CPR_SAFE_BEGIN(cpr);
usr/src/uts/common/fs/zfs/txg.c
249
CALLB_CPR_SAFE_END(cpr, &tx->tx_sync_lock);
usr/src/uts/common/fs/zfs/txg.c
477
callb_cpr_t cpr;
usr/src/uts/common/fs/zfs/txg.c
480
txg_thread_enter(tx, &cpr);
usr/src/uts/common/fs/zfs/txg.c
504
txg_thread_wait(tx, &cpr, &tx->tx_sync_more_cv, timer);
usr/src/uts/common/fs/zfs/txg.c
517
txg_thread_wait(tx, &cpr, &tx->tx_quiesce_done_cv, 0);
usr/src/uts/common/fs/zfs/txg.c
521
txg_thread_exit(tx, &cpr, &tx->tx_sync_thread);
usr/src/uts/common/fs/zfs/txg.c
561
callb_cpr_t cpr;
usr/src/uts/common/fs/zfs/txg.c
563
txg_thread_enter(tx, &cpr);
usr/src/uts/common/fs/zfs/txg.c
578
txg_thread_wait(tx, &cpr, &tx->tx_quiesce_more_cv, 0);
usr/src/uts/common/fs/zfs/txg.c
581
txg_thread_exit(tx, &cpr, &tx->tx_quiesce_thread);
usr/src/uts/common/io/usb/scsa2usb/scsa2usb.c
2007
scsa2usbp->scsa2usb_panic_info->cpr.cc_lockp =
usr/src/uts/common/io/usb/scsa2usb/scsa2usb.c
2009
scsa2usbp->scsa2usb_panic_info->cpr.cc_id =
usr/src/uts/common/io/usb/scsa2usb/scsa2usb.c
2024
SCSA2USB_CANCEL_CB(scsa2usbp->scsa2usb_panic_info->cpr.cc_id);
usr/src/uts/common/io/usb/usba/hubdi.c
7514
hubd->h_cpr_cb->cpr.cc_lockp = &hubd->h_cpr_cb->lockp;
usr/src/uts/common/io/usb/usba/hubdi.c
7515
hubd->h_cpr_cb->cpr.cc_id = callb_add(hubd_cpr_post_user_callb,
usr/src/uts/common/io/usb/usba/hubdi.c
7528
(void) callb_delete(hubd->h_cpr_cb->cpr.cc_id);
usr/src/uts/common/sys/usb/hubd/hubdvar.h
129
callb_cpr_t cpr; /* for cpr related info */
usr/src/uts/common/sys/usb/hubd/hubdvar.h
134
_NOTE(DATA_READABLE_WITHOUT_LOCK(hubd_cpr_t::cpr))
usr/src/uts/common/sys/usb/scsa2usb/scsa2usb.h
532
callb_cpr_t cpr; /* for cpr related info */
usr/src/uts/common/sys/usb/scsa2usb/scsa2usb.h
537
_NOTE(DATA_READABLE_WITHOUT_LOCK(scsa2usb_cpr_t::cpr))
usr/src/uts/common/syscall/uadmin.c
374
extern int cpr(int, void *);
usr/src/uts/common/syscall/uadmin.c
379
error = cpr(fcn, mdep);
usr/src/uts/i86pc/io/hpet_acpi.c
1433
if ((hpet_state.cpr == B_TRUE) ||
usr/src/uts/i86pc/io/hpet_acpi.c
90
boolean_t cpr; /* currently in CPR */
usr/src/uts/i86pc/io/hpet_acpi.c
940
hpet_state.cpr = B_TRUE;
usr/src/uts/i86pc/io/hpet_acpi.c
951
hpet_state.cpr = B_FALSE;
usr/src/uts/i86pc/io/hpet_acpi.c
968
hpet_state.cpr = B_FALSE;