Home
last modified time | relevance | path

Searched refs:intr_handler_t (Results 1 – 25 of 27) sorted by relevance

12

/hal_espressif-3.4.0/components/riscv/include/riscv/
Dinterrupt.h28 typedef void (*intr_handler_t)(void*); typedef
35 void intr_handler_set(int rv_int_num, intr_handler_t fn, void* arg);
41 intr_handler_t intr_handler_get(int rv_int_num);
/hal_espressif-3.4.0/components/riscv/
Dinterrupt.c33 intr_handler_t handler;
39 void intr_handler_set(int int_no, intr_handler_t fn, void *arg) in intr_handler_set()
49 intr_handler_t intr_handler_get(int rv_int_num) in intr_handler_get()
/hal_espressif-3.4.0/components/esp_hw_support/include/
Desp_intr_alloc.h81 typedef void (*intr_handler_t)(void *arg); typedef
153 esp_err_t esp_intr_alloc(int source, int flags, intr_handler_t handler, void *arg, intr_handle_t *r…
191 … source, int flags, uint32_t intrstatusreg, uint32_t intrstatusmask, intr_handler_t handler, void …
/hal_espressif-3.4.0/components/driver/
Drtc_module.c38 intr_handler_t handler;
85 esp_err_t rtc_isr_register(intr_handler_t handler, void* handler_arg, uint32_t rtc_intr_mask) in rtc_isr_register()
105 esp_err_t rtc_isr_deregister(intr_handler_t handler, void* handler_arg) in rtc_isr_deregister()
Dtouch_sensor_common.c51 esp_err_t touch_pad_isr_deregister(intr_handler_t fn, void *arg) in touch_pad_isr_deregister()
/hal_espressif-3.4.0/components/esp_timer/src/
Desp_timer_impl_systimer.c30 #define ISR_HANDLER intr_handler_t
47 static intr_handler_t s_alarm_handler = NULL;
135 esp_err_t esp_timer_impl_init(intr_handler_t alarm_handler) in esp_timer_impl_init()
Desp_timer_impl_lac.c257 esp_err_t esp_timer_impl_init(intr_handler_t alarm_handler) in esp_timer_impl_init()
264 (intr_handler_t)timer_alarm_isr, NULL, NULL); in esp_timer_impl_init()
Desp_timer_impl_frc_legacy.c106 static intr_handler_t s_alarm_handler = NULL;
367 esp_err_t esp_timer_impl_init(intr_handler_t alarm_handler)
/hal_espressif-3.4.0/components/driver/include/driver/
Drtc_cntl.h33 esp_err_t rtc_isr_register(intr_handler_t handler, void* handler_arg,
44 esp_err_t rtc_isr_deregister(intr_handler_t handler, void* handler_arg);
/hal_espressif-3.4.0/components/driver/test/include/test/
Dtest_adc_dac_dma.h28 esp_err_t adc_dac_dma_isr_register(intr_handler_t handler, void* handler_arg, uint32_t intr_mask);
36 esp_err_t adc_dac_dma_isr_deregister(intr_handler_t handler, void* handler_arg);
/hal_espressif-3.4.0/components/esp_timer/private_include/
Desp_timer_impl.h25 typedef void (*intr_handler_t)(void *arg); typedef
44 esp_err_t esp_timer_impl_init(intr_handler_t alarm_handler);
/hal_espressif-3.4.0/components/driver/test/dac_dma_test/
Dtest_esp32s2.c217 intr_handler_t handler;
262 esp_err_t adc_dac_dma_isr_register(intr_handler_t handler, void* handler_arg, uint32_t intr_mask) in adc_dac_dma_isr_register()
282 esp_err_t adc_dac_dma_isr_deregister(intr_handler_t handler, void* handler_arg) in adc_dac_dma_isr_deregister()
/hal_espressif-3.4.0/tools/mocks/esp_hw_support/include/
Desp_intr_alloc.h19 typedef void (*intr_handler_t)(void *arg); typedef
/hal_espressif-3.4.0/components/esp_hw_support/
Dintr_alloc.c59 intr_handler_t isr;
87 intr_handler_t isr;
438 …tus(int source, int flags, uint32_t intrstatusreg, uint32_t intrstatusmask, intr_handler_t handler, in esp_intr_alloc_intrstatus()
597 esp_err_t esp_intr_alloc(int source, int flags, intr_handler_t handler, void *arg, intr_handle_t *r… in esp_intr_alloc()
/hal_espressif-3.4.0/components/bt/controller/esp32/
Dhli_api.h56 esp_err_t hli_intr_register(intr_handler_t handler, void* arg, uint32_t intr_reg, uint32_t intr_mas…
Dhli_api.c29 intr_handler_t handler;
63 esp_err_t hli_intr_register(intr_handler_t handler, void* arg, uint32_t intr_reg, uint32_t intr_mas… in hli_intr_register()
/hal_espressif-3.4.0/components/driver/esp32/include/driver/
Dtouch_sensor.h118 esp_err_t touch_pad_isr_register(intr_handler_t fn, void *arg);
/hal_espressif-3.4.0/zephyr/esp32s3/src/bt/
Desp_bt_adapter.c118 void (*_interrupt_handler_set)(int interrupt_no, intr_handler_t fn, void *arg);
222 static void interrupt_handler_set_wrapper(int n, intr_handler_t fn, void *arg);
413 static void interrupt_handler_set_wrapper(int n, intr_handler_t fn, void *arg) in interrupt_handler_set_wrapper()
417 esp_intr_alloc(bt_interrupt_source, 0, (intr_handler_t)fn, arg, NULL); in interrupt_handler_set_wrapper()
/hal_espressif-3.4.0/components/driver/esp32s2/include/driver/
Dtouch_sensor.h218 esp_err_t touch_pad_isr_register(intr_handler_t fn, void *arg, touch_pad_intr_mask_t intr_mask);
/hal_espressif-3.4.0/components/driver/esp32s3/include/driver/
Dtouch_sensor.h218 esp_err_t touch_pad_isr_register(intr_handler_t fn, void *arg, touch_pad_intr_mask_t intr_mask);
/hal_espressif-3.4.0/components/bt/controller/esp32c3/
Dbt.c142 void (*_interrupt_handler_set)(int interrupt_no, intr_handler_t fn, void *arg);
273 static void interrupt_handler_set_wrapper(int n, intr_handler_t fn, void *arg);
458 static void interrupt_handler_set_wrapper(int n, intr_handler_t fn, void *arg) in interrupt_handler_set_wrapper()
/hal_espressif-3.4.0/zephyr/esp32c3/src/bt/
Desp_bt_adapter.c119 void (*_interrupt_handler_set)(int interrupt_no, intr_handler_t fn, void *arg);
223 static void interrupt_handler_set_wrapper(int n, intr_handler_t fn, void *arg);
419 static void interrupt_handler_set_wrapper(int n, intr_handler_t fn, void *arg) in interrupt_handler_set_wrapper()
/hal_espressif-3.4.0/components/driver/esp32/
Dtouch_sensor.c76 esp_err_t touch_pad_isr_register(intr_handler_t fn, void *arg) in touch_pad_isr_register()
/hal_espressif-3.4.0/components/driver/esp32s3/
Dtouch_sensor.c62 esp_err_t touch_pad_isr_register(intr_handler_t fn, void *arg, touch_pad_intr_mask_t intr_mask) in touch_pad_isr_register()
/hal_espressif-3.4.0/components/driver/esp32s2/
Dtouch_sensor.c82 esp_err_t touch_pad_isr_register(intr_handler_t fn, void *arg, touch_pad_intr_mask_t intr_mask) in touch_pad_isr_register()

12