Searched refs:handler_arg (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-latest/components/esp_hw_support/ |
D | rtc_module.c | 58 void* handler_arg; member 75 (*it->handler)(it->handler_arg); in rtc_isr() 104 esp_err_t rtc_isr_register(intr_handler_t handler, void* handler_arg, uint32_t rtc_intr_mask, uint3… in rtc_isr_register() argument 120 item->handler_arg = handler_arg; in rtc_isr_register() 135 esp_err_t rtc_isr_deregister(intr_handler_t handler, void* handler_arg) in rtc_isr_deregister() argument 146 if (it->handler == handler && it->handler_arg == handler_arg) { in rtc_isr_deregister()
|
/hal_espressif-latest/components/esp_hw_support/include/ |
D | esp_cpu.h | 336 …ATTR void esp_cpu_intr_set_handler(int intr_num, esp_cpu_intr_handler_t handler, void *handler_arg) in esp_cpu_intr_set_handler() argument 340 xt_set_interrupt_handler(intr_num, (xt_handler)handler, handler_arg); in esp_cpu_intr_set_handler() 342 intr_handler_set(intr_num, (intr_handler_t)handler, handler_arg); in esp_cpu_intr_set_handler() 357 void *handler_arg; in esp_cpu_intr_get_handler_arg() local 359 handler_arg = xt_get_interrupt_handler_arg(intr_num); in esp_cpu_intr_get_handler_arg() 361 handler_arg = intr_handler_get_arg(intr_num); in esp_cpu_intr_get_handler_arg() 363 return handler_arg; in esp_cpu_intr_get_handler_arg()
|
/hal_espressif-latest/components/esp_hw_support/include/esp_private/ |
D | rtc_ctrl.h | 39 esp_err_t rtc_isr_register(intr_handler_t handler, void* handler_arg, 50 esp_err_t rtc_isr_deregister(intr_handler_t handler, void* handler_arg);
|