/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/ |
H A D | timeouts.h | 75 lwip_cyclic_timer_handler handler; member 108 err_t sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char *handler_name); 109 #define sys_timeout_ext(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler) 111 err_t sys_timeout_ext(u32_t msecs, sys_timeout_handler handler, void *arg); 114 #define sys_timeout(msecs, handler, arg) (void)sys_timeout_ext(msecs, handler, arg) 116 void sys_untimeout(sys_timeout_handler handler, void *arg);
|
H A D | lowpower.h | 71 lwip_timer_handler handler; member 81 sys_timeout_handler handler; member 125 #define sys_timeout(msecs, handler, arg) (void)sys_timeout_ext(msecs, handler, arg) 131 void sys_untimeout(sys_timeout_handler handler, void *arg); 135 err_t sys_timeout_ext(u32_t msecs, sys_timeout_handler handler, void *arg);
|
H A D | debug.h | 154 #define LWIP_ERROR(message, expression, handler) do { \ 157 handler; \ 161 /* if "expression" isn't true, then print "message" and execute "handler" expression */ 162 #define LWIP_ERROR(message, expression, handler) do { if (!(expression)) { \ 163 LWIP_PLATFORM_ERROR(message); handler; } } while (0)
|
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/linux/ |
H A D | mali_osk_wq.c | 28 _mali_osk_wq_work_handler_t handler; member 35 _mali_osk_wq_work_handler_t handler; member 109 _mali_osk_wq_work_t *mali_osk_wq_create_work(_mali_osk_wq_work_handler_t handler, void *data) in mali_osk_wq_create_work() argument 117 work->handler = handler; in mali_osk_wq_create_work() 126 _mali_osk_wq_work_t *_mali_osk_wq_create_work_high_pri(_mali_osk_wq_work_handler_t handler, void *data) in _mali_osk_wq_create_work_high_pri() argument 134 work->handler = handler; in _mali_osk_wq_create_work_high_pri() 195 work_object->handler(work_object->data); in _mali_osk_wq_work_func() 203 work_object->handler(work_objec in _mali_osk_wq_delayed_work_func() 206 _mali_osk_wq_delayed_create_work(_mali_osk_wq_work_handler_t handler, void *data) _mali_osk_wq_delayed_create_work() argument [all...] |
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/linux/ |
H A D | mali_osk_wq.c | 27 _mali_osk_wq_work_handler_t handler; member 34 _mali_osk_wq_work_handler_t handler; member 104 _mali_osk_wq_work_t *_mali_osk_wq_create_work(_mali_osk_wq_work_handler_t handler, void *data) in _mali_osk_wq_create_work() argument 110 work->handler = handler; in _mali_osk_wq_create_work() 119 _mali_osk_wq_work_t *_mali_osk_wq_create_work_high_pri(_mali_osk_wq_work_handler_t handler, void *data) in _mali_osk_wq_create_work_high_pri() argument 125 work->handler = handler; in _mali_osk_wq_create_work_high_pri() 187 work_object->handler(work_object->data); in _mali_osk_wq_work_func() 195 work_object->handler(work_objec in _mali_osk_wq_delayed_work_func() 198 _mali_osk_wq_delayed_create_work(_mali_osk_wq_work_handler_t handler, void *data) _mali_osk_wq_delayed_create_work() argument [all...] |
/device/qemu/arm_virt/liteos_a/board/extcmd/ |
H A D | reset_shell.c | 43 UINT32 osReHookFuncAdd(STORAGE_HOOK_FUNC handler, VOID *param) in osReHookFuncAdd() argument 52 pstFuncNode->pHandler = handler; in osReHookFuncAdd() 61 UINT32 osReHookFuncDel(STORAGE_HOOK_FUNC handler) in osReHookFuncDel() argument 67 if (g_hook_func_node->pHandler == handler) { in osReHookFuncDel() 79 if (pstFuncNode->pHandler == handler) { in osReHookFuncDel()
|
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/drv/osal/ |
H A D | osal_workqueue.c | 84 if ((ow != NULL) && (ow->handler != NULL)) { in osal_work_handler() 85 ow->handler(ow); in osal_work_handler() 89 int osal_workqueue_init(osal_workqueue *work, osal_workqueue_handler handler) in osal_workqueue_init() argument 113 work->handler = handler; in osal_workqueue_init()
|
H A D | osal_interrupt.c | 50 int osal_irq_request(unsigned int irq, osal_irq_handler handler, osal_irq_handler thread_fn, const char *name, in osal_irq_request() argument 93 return request_threaded_irq(__irq, (irq_handler_t)handler, (irq_handler_t)thread_fn, flags, name, dev); in osal_irq_request() 194 * holding a resource the IRQ handler may need you will deadlock. 245 tasklet_local->func = tasklet->handler; in osal_tasklet_init() 268 tasklet_local->func = tasklet->handler; in osal_tasklet_update()
|
H A D | osal_timer.c | 74 if ((timer == NULL) || (timer->timer == NULL) || (timer->handler == NULL) || (interval == 0)) { in osal_timer_set() 80 t->function = (void (*)(struct timer_list *))timer->handler; in osal_timer_set() 82 t->function = timer->handler; in osal_timer_set() 93 if ((timer == NULL) || (timer->timer == NULL) || (timer->handler == NULL)) { in osal_timer_del()
|
H A D | osal_gpio.c | 130 int osal_gpio_irq_request(unsigned int gpio, osal_irq_handler handler, in osal_gpio_irq_request() argument 153 ret = request_threaded_irq(irq, (irq_handler_t)handler, NULL, flags, name, dev); in osal_gpio_irq_request()
|
H A D | osal_task.c | 36 osal_task *osal_kthread_create(osal_kthread_handler handler, void *data, const char *name, unsigned int stack_size) in osal_kthread_create() argument 54 k = kthread_run(handler, data, name); in osal_kthread_create()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/libcoap/include/coap2/ |
H A D | net.h | 91 * Response handler that is used as call-back in coap_context_t. 106 * Negative Acknowedge handler that is used as call-back in coap_context_t. 121 * Recieved Ping handler that is used as call-back in coap_context_t. 134 * Recieved Pong handler that is used as call-back in coap_context_t. 224 * Registers a new message handler that is called whenever a response was 227 * @param context The context to register the handler for. 228 * @param handler The response handler to register. 232 coap_response_handler_t handler) { in coap_register_response_handler() 233 context->response_handler = handler; in coap_register_response_handler() 231 coap_register_response_handler(coap_context_t *context, coap_response_handler_t handler) coap_register_response_handler() argument 246 coap_register_nack_handler(coap_context_t *context, coap_nack_handler_t handler) coap_register_nack_handler() argument 259 coap_register_ping_handler(coap_context_t *context, coap_ping_handler_t handler) coap_register_ping_handler() argument 272 coap_register_pong_handler(coap_context_t *context, coap_pong_handler_t handler) coap_register_pong_handler() argument [all...] |
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/oal/ |
H A D | oal_interrupt.h | 117 static inline hi_s32 oal_request_irq(hi_u32 irq, irq_handler_t handler, unsigned long flags, const hi_char *name, in oal_request_irq() argument 124 return request_irq(irq, handler, flags, name, dev); in oal_request_irq() 127 return request_irq(irq, handler, flags, name, dev); in oal_request_irq() 132 st_gpio_info.irq_handler = (irq_func)handler; in oal_request_irq()
|
/device/board/hisilicon/hispark_taurus/liteos_a/board/include/ |
H A D | reset_shell.h | 37 UINT32 osReHookFuncAdd(STORAGE_HOOK_FUNC handler, VOID *param); 38 UINT32 osReHookFuncDel(STORAGE_HOOK_FUNC handler);
|
/device/board/hisilicon/hispark_aries/liteos_a/board/include/ |
H A D | reset_shell.h | 37 UINT32 osReHookFuncAdd(STORAGE_HOOK_FUNC handler, VOID *param); 38 UINT32 osReHookFuncDel(STORAGE_HOOK_FUNC handler);
|
/device/qemu/arm_virt/liteos_a/board/include/ |
H A D | reset_shell.h | 37 UINT32 osReHookFuncAdd(STORAGE_HOOK_FUNC handler, VOID *param); 38 UINT32 osReHookFuncDel(STORAGE_HOOK_FUNC handler);
|
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/drv/include/ |
H A D | hi_osal.h | 110 void (*handler)(struct osal_workqueue_ *workqueue); member 114 int osal_workqueue_init(osal_workqueue *work, osal_workqueue_handler handler); 122 void (*handler)(unsigned long); member 169 OSAL_HRTIMER_RESTART_E (*handler)(void *timer); member 193 osal_task *osal_kthread_create(osal_kthread_handler handler, 240 void (*handler)(unsigned long data); member 330 int (*handler)(unsigned int argc, char (*argv)[PROC_CMD_SINGEL_LENGTH_MAX], void *private); member 382 int (*handler)(unsigned int cmd, void *arg, void *private_data); member 487 int osal_gpio_irq_request(unsigned int gpio, osal_irq_handler handler,
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/osal/linux/ |
H A D | osal_interrupt.c | 25 int osal_request_irq(unsigned int irq, osal_irq_handler_t handler, osal_irq_handler_t thread_fn, const char *name, in osal_request_irq() argument 30 return request_threaded_irq(irq, (irq_handler_t)handler, (irq_handler_t)thread_fn, flags, name, dev); in osal_request_irq()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/kernel/include/ |
H A D | los_swtmr.h | 356 * @param handler [IN] Callback function that handles software timer timeout. 372 extern UINT32 LOS_SwtmrCreate(UINT32 interval, UINT8 mode, SWTMR_PROC_FUNC handler, UINT16 *swtmrID, UINT32 arg); 389 * @param handler [IN] Callback function that handles software timer timeout. 402 extern UINT32 LOS_SwtmrModify(UINT16 swtmrID, UINT32 interval, UINT8 mode, SWTMR_PROC_FUNC handler, UINT32 arg);
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/common/ |
H A D | mali_osk.h | 102 * scheduled, \a handler will be called with \a data as the argument. 110 _mali_osk_wq_work_t *_mali_osk_wq_create_work(_mali_osk_wq_work_handler_t handler, void *data); 128 _mali_osk_wq_work_t *_mali_osk_wq_create_work_high_pri(_mali_osk_wq_work_handler_t handler, void *data); 132 * This will flush the work queue to ensure that the work handler will not 139 * This will NOT flush the work queue, so only call this if you are sure that the work handler will 144 /** @brief Cause a queued, deferred call of the work handler 147 * to the work handler. After calling \ref _mali_osk_wq_schedule_work(), the 148 * work handler will be scheduled to run at some point in the future. 151 * IRQ-related work to the IRQ bottom-half handler. This is necessary for work 152 * that cannot be done in an IRQ context by the IRQ upper-half handler [all...] |
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/common/ |
H A D | mali_osk.h | 119 * scheduled, \a handler will be called with \a data as the argument. 127 _mali_osk_wq_work_t *mali_osk_wq_create_work(_mali_osk_wq_work_handler_t handler, void *data); 145 _mali_osk_wq_work_t *_mali_osk_wq_create_work_high_pri(_mali_osk_wq_work_handler_t handler, void *data); 149 * This will flush the work queue to ensure that the work handler will not 156 * This will NOT flush the work queue, so only call this if you are sure that the work handler will 161 /** @brief Cause a queued, deferred call of the work handler 164 * to the work handler. After calling \ref mali_osk_wq_schedule_work(), the 165 * work handler will be scheduled to run at some point in the future. 168 * IRQ-related work to the IRQ bottom-half handler. This is necessary for work 169 * that cannot be done in an IRQ context by the IRQ upper-half handler [all...] |
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/isp/ |
H A D | videobuf2-rdma-sg.c | 34 struct vb2_vmarea_handler handler;
member 117 buf->handler.refcount = &buf->refcount;
in vb2_dma_sg_alloc() 118 buf->handler.put = vb2_dma_sg_put;
in vb2_dma_sg_alloc() 119 buf->handler.arg = buf;
in vb2_dma_sg_alloc() 299 vma->vm_private_data = &buf->handler;
in vb2_dma_sg_mmap()
|
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/isp/ |
H A D | videobuf2-rdma-sg.c | 34 struct vb2_vmarea_handler handler; member 113 buf->handler.refcount = &buf->refcount; in vb2_dma_sg_alloc() 114 buf->handler.put = vb2_dma_sg_put; in vb2_dma_sg_alloc() 115 buf->handler.arg = buf; in vb2_dma_sg_alloc() 289 vma->vm_private_data = &buf->handler; in vb2_dma_sg_mmap()
|
/device/soc/rockchip/common/vendor/drivers/media/i2c/ |
H A D | gc2093.c | 551 struct gc2093 *gc2093 = container_of(ctrl->handler, struct gc2093, ctrl_handler);
in gc2093_set_ctrl() 617 struct v4l2_ctrl_handler *handler;
in gc2093_initialize_controls() local 622 handler = &gc2093->ctrl_handler;
in gc2093_initialize_controls() 624 ret = v4l2_ctrl_handler_init(handler, PI_REG_VALUE_EI);
in gc2093_initialize_controls() 628 handler->lock = &gc2093->lock;
in gc2093_initialize_controls() 630 gc2093->link_freq = v4l2_ctrl_new_int_menu(handler, NULL, V4L2_CID_LINK_FREQ, ARRAY_SIZE(link_freq_menu_items) - 1,
in gc2093_initialize_controls() 636 gc2093->pixel_rate = v4l2_ctrl_new_std(handler, NULL, V4L2_CID_PIXEL_RATE, 0, to_pixel_rate(LINK_FREQ_150M_INDEX),
in gc2093_initialize_controls() 640 gc2093->hblank = v4l2_ctrl_new_std(handler, NULL, V4L2_CID_HBLANK, h_blank, h_blank, 1, h_blank);
in gc2093_initialize_controls() 646 gc2093->vblank = v4l2_ctrl_new_std(handler, &gc2093_ctrl_ops, V4L2_CID_VBLANK, vblank_def,
in gc2093_initialize_controls() 650 gc2093->exposure = v4l2_ctrl_new_std(handler, in gc2093_initialize_controls() [all...] |
/device/soc/rockchip/rk3588/kernel/drivers/media/i2c/ |
H A D | ov13855.c | 1738 struct ov13855 *ov13855 = container_of(ctrl->handler, in ov13855_set_ctrl() 1805 struct v4l2_ctrl_handler *handler; in ov13855_initialize_controls() local 1812 handler = &ov13855->ctrl_handler; in ov13855_initialize_controls() 1814 ret = v4l2_ctrl_handler_init(handler, 8); in ov13855_initialize_controls() 1817 handler->lock = &ov13855->mutex; in ov13855_initialize_controls() 1819 ov13855->link_freq = v4l2_ctrl_new_int_menu(handler, NULL, in ov13855_initialize_controls() 1825 ov13855->pixel_rate = v4l2_ctrl_new_std(handler, NULL, in ov13855_initialize_controls() 1834 ov13855->hblank = v4l2_ctrl_new_std(handler, NULL, V4L2_CID_HBLANK, in ov13855_initialize_controls() 1840 ov13855->vblank = v4l2_ctrl_new_std(handler, &ov13855_ctrl_ops, in ov13855_initialize_controls() 1846 ov13855->exposure = v4l2_ctrl_new_std(handler, in ov13855_initialize_controls() [all...] |