Searched refs:event_msgq (Results 1 – 6 of 6) sorted by relevance
/Zephyr-Core-3.5.0/modules/lvgl/input/ |
D | lvgl_common_input.c | 31 if (k_msgq_get(cfg->event_msgq, data, K_NO_WAIT) != 0) { in lvgl_input_read_cb() 41 data->continue_reading = k_msgq_num_used_get(cfg->event_msgq) > 0; in lvgl_input_read_cb()
|
D | lvgl_encoder_input.c | 36 if (k_msgq_put(cfg->common_config.event_msgq, &data->pending_event, K_NO_WAIT) != 0) { in lvgl_encoder_process_event() 63 .common_config.event_msgq = &LVGL_INPUT_EVENT_MSGQ(inst, encoder), \
|
D | lvgl_button_input.c | 43 if (k_msgq_put(cfg->common_config.event_msgq, &data->pending_event, K_NO_WAIT) != 0) { in lvgl_button_process_event() 77 .common_config.event_msgq = &LVGL_INPUT_EVENT_MSGQ(inst, button), \
|
D | lvgl_pointer_input.c | 107 if (k_msgq_put(cfg->common_config.event_msgq, &data->pending_event, K_NO_WAIT) != 0) { in lvgl_pointer_process_event() 121 .common_config.event_msgq = &LVGL_INPUT_EVENT_MSGQ(inst, pointer), \
|
/Zephyr-Core-3.5.0/modules/lvgl/include/ |
D | lvgl_common_input.h | 19 struct k_msgq *event_msgq; member
|
/Zephyr-Core-3.5.0/subsys/net/ip/ |
D | net_mgmt.c | 48 K_MSGQ_DEFINE(event_msgq, sizeof(struct mgmt_event_entry), 82 if (k_msgq_put(&event_msgq, &new_event, in mgmt_push_event() 96 } while (k_msgq_get(&event_msgq, dst, K_FOREVER) != 0); in mgmt_pop_event()
|