Home
last modified time | relevance | path

Searched refs:event_msgq (Results 1 – 6 of 6) sorted by relevance

/Zephyr-Core-3.5.0/modules/lvgl/input/
Dlvgl_common_input.c31 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()
Dlvgl_encoder_input.c36 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), \
Dlvgl_button_input.c43 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), \
Dlvgl_pointer_input.c107 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/
Dlvgl_common_input.h19 struct k_msgq *event_msgq; member
/Zephyr-Core-3.5.0/subsys/net/ip/
Dnet_mgmt.c48 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()