Lines Matching full:active
1245 NRFX_LOG_DEBUG("USBD event: WUREQ (%s)", m_bus_suspend ? "In Suspend" : "Active"); in ev_usbevent_handler()
1533 uint32_t active = 0; in nrfx_usbd_irq_handler() local
1541 active |= 1UL << event_nr; in nrfx_usbd_irq_handler()
1549 if ((!m_dma_pending) && (0 != (active & (USBD_INTEN_SOF_Msk)))) in nrfx_usbd_irq_handler()
1606 active |= USBD_INTEN_EP0SETUP_Msk; in nrfx_usbd_irq_handler()
1610 active |= USBD_INTEN_USBRESET_Msk; in nrfx_usbd_irq_handler()
1622 active |= enabled & NRF_USBD_INT_DATAEP_MASK; in nrfx_usbd_irq_handler()
1631 active |= NRF_USBD_INT_EP0DATADONE_MASK; in nrfx_usbd_irq_handler()
1637 /* Process the active interrupts */ in nrfx_usbd_irq_handler()
1638 bool setup_active = 0 != (active & NRF_USBD_INT_EP0SETUP_MASK); in nrfx_usbd_irq_handler()
1639 active &= ~NRF_USBD_INT_EP0SETUP_MASK; in nrfx_usbd_irq_handler()
1641 while (active) in nrfx_usbd_irq_handler()
1643 uint8_t event_nr = __CLZ(__RBIT(active)); in nrfx_usbd_irq_handler()
1645 active &= ~(1UL << event_nr); in nrfx_usbd_irq_handler()