Lines Matching refs:h_p
1038 ddi_intr_add_softint(dev_info_t *dip, ddi_softint_handle_t *h_p, int soft_pri, in ddi_intr_add_softint() argument
1047 if ((dip == NULL) || (h_p == NULL) || (handler == NULL)) { in ddi_intr_add_softint()
1083 *h_p = (ddi_softint_handle_t)hdlp; in ddi_intr_add_softint()
1526 ddi_softint_handle_t *h_p = (ddi_softint_handle_t *)id; in ddi_remove_softintr() local
1531 if (h_p == NULL) in ddi_remove_softintr()
1535 (void *)h_p)); in ddi_remove_softintr()
1537 (void) ddi_intr_remove_softint(*h_p); in ddi_remove_softintr()
1538 kmem_free(h_p, sizeof (ddi_softint_handle_t)); in ddi_remove_softintr()
1544 ddi_softint_handle_t *h_p = (ddi_softint_handle_t *)id; in ddi_trigger_softintr() local
1547 if (h_p == NULL) in ddi_trigger_softintr()
1550 if ((ret = ddi_intr_trigger_softint(*h_p, NULL)) != DDI_SUCCESS) { in ddi_trigger_softintr()
1553 "ret 0x%x\n", (void *)h_p, ret)); in ddi_trigger_softintr()