Lines Matching full:items
23 /* Thread A enters items into a fifo, starts Thread B and waits for a semaphore. */
24 /* Thread B extracts all items from the fifo and enters some items back into the fifo. */
26 /* Once the control is returned back to Thread A, it extracts all items from the fifo. */
41 /* Get items from fifo */ in thread_entry_fn_fifo()
47 /* Put items into fifo */ in thread_entry_fn_fifo()
66 /* Set and Put items into fifo */ in ZTEST()
80 /* Get items from fifo */ in ZTEST()
91 /* Thread A enters items into a lifo, starts Thread B and waits for a semaphore. */
92 /* Thread B extracts all items from the lifo and enters some items back into the lifo. */
94 /* Once the control is returned back to Thread A, it extracts all items from the lifo. */
110 /* Get items from lifo */ in thread_entry_fn_lifo()
116 /* Put items into lifo */ in thread_entry_fn_lifo()
134 /* Set and Put items into lifo */ in ZTEST()
148 /* Get items from lifo */ in ZTEST()
160 /* Thread A enters items into a stack, starts thread B and waits for a semaphore. */
161 /* Thread B extracts all items from the stack and enters some items back into the stack. */
163 /* Once the control is returned back to Thread A, it extracts all items from the stack. */
190 "Push & Pop items does not match"); in thread_entry_fn_stack()
232 "Push & Pop items does not match"); in ZTEST()