Home
last modified time | relevance | path

Searched refs:cmsis_rtos_msgq_cb (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/subsys/portability/cmsis_rtos_v2/
Dmsgq.c12 K_MEM_SLAB_DEFINE(cmsis_rtos_msgq_cb_slab, sizeof(struct cmsis_rtos_msgq_cb),
30 struct cmsis_rtos_msgq_cb *msgq; in osMessageQueueNew()
48 __ASSERT(attr->cb_size == sizeof(struct cmsis_rtos_msgq_cb), "Invalid cb_size\n"); in osMessageQueueNew()
49 msgq = (struct cmsis_rtos_msgq_cb *)attr->cb_mem; in osMessageQueueNew()
53 (void)memset(msgq, 0, sizeof(struct cmsis_rtos_msgq_cb)); in osMessageQueueNew()
97 struct cmsis_rtos_msgq_cb *msgq = (struct cmsis_rtos_msgq_cb *)msgq_id; in osMessageQueuePut()
134 struct cmsis_rtos_msgq_cb *msgq = (struct cmsis_rtos_msgq_cb *)msgq_id; in osMessageQueueGet()
172 struct cmsis_rtos_msgq_cb *msgq = (struct cmsis_rtos_msgq_cb *)msgq_id; in osMessageQueueGetCapacity()
186 struct cmsis_rtos_msgq_cb *msgq = (struct cmsis_rtos_msgq_cb *)msgq_id; in osMessageQueueGetMsgSize()
200 struct cmsis_rtos_msgq_cb *msgq = (struct cmsis_rtos_msgq_cb *)msgq_id; in osMessageQueueGetCount()
[all …]
/Zephyr-latest/include/zephyr/portability/
Dcmsis_types.h94 struct cmsis_rtos_msgq_cb { struct
/Zephyr-latest/tests/subsys/portability/cmsis_rtos_v2/src/
Dmsgq.c185 static struct cmsis_rtos_msgq_cb msgq_cb2;