Searched refs:g_pIntr (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Additions/solaris/Virtio/
H A DVirtioPci-solaris.c117 static ddi_intr_handle_t *g_pIntr; variable
535 g_pIntr = RTMemAllocZ(IntrCount * sizeof(ddi_intr_handle_t));
536 if (g_pIntr)
539 rc = ddi_intr_alloc(pDip, g_pIntr, IntrType, 0, IntrCount, &IntrAllocated, DDI_INTR_ALLOC_NORMAL);
545 rc = ddi_intr_get_pri(g_pIntr[0], &uIntrPriority);
554 rc = ddi_intr_add_handler(g_pIntr[i], (ddi_intr_handler_t *)VirtioPciISR,
557 rc = ddi_intr_enable(g_pIntr[i]);
574 ddi_intr_remove_handler(g_pIntr[x]);
581 ddi_intr_free(g_pIntr[k]);
585 RTMemFree(g_pIntr);
[all...]
/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxGuest-solaris.c181 static ddi_intr_handle_t *g_pIntr; variable
435 int rc = ddi_intr_disable(g_pIntr[i]);
794 g_pIntr = RTMemAlloc(IntrCount * sizeof(ddi_intr_handle_t));
795 if (g_pIntr)
798 rc = ddi_intr_alloc(pDip, g_pIntr, IntrType, 0, IntrCount, &IntrAllocated, DDI_INTR_ALLOC_NORMAL);
804 rc = ddi_intr_get_pri(g_pIntr[0], &uIntrPriority);
813 rc = ddi_intr_add_handler(g_pIntr[i], (ddi_intr_handler_t *)VBoxGuestSolarisISR,
816 rc = ddi_intr_enable(g_pIntr[i]);
830 ddi_intr_remove_handler(g_pIntr[x]);
837 ddi_intr_free(g_pIntr[
[all...]

Completed in 51 milliseconds