Lines Matching refs:p_cb
109 egu_control_block_t * p_cb = &m_cb[p_instance->drv_inst_idx]; in nrfx_egu_init() local
111 if (p_cb->state != NRFX_DRV_STATE_UNINITIALIZED) in nrfx_egu_init()
120 p_cb->state = NRFX_DRV_STATE_INITIALIZED; in nrfx_egu_init()
121 p_cb->p_context = p_context; in nrfx_egu_init()
122 p_cb->handler = event_handler; in nrfx_egu_init()
158 egu_control_block_t * p_cb = &m_cb[p_instance->drv_inst_idx]; in nrfx_egu_uninit() local
163 p_cb->state = NRFX_DRV_STATE_UNINITIALIZED; in nrfx_egu_uninit()
168 egu_control_block_t * p_cb = &m_cb[p_instance->drv_inst_idx]; in nrfx_egu_init_check() local
170 return (p_cb->state != NRFX_DRV_STATE_UNINITIALIZED); in nrfx_egu_init_check()
173 static void irq_handler(NRF_EGU_Type * p_reg, egu_control_block_t * p_cb) in irq_handler() argument
184 p_cb->handler(event_idx, p_cb->p_context); in irq_handler()