Lines Matching full:items
14 * Test Thread enters items into a fifo, starts the Child Thread
15 * and waits for a semaphore. Child thread extracts all items from
16 * the fifo and enters some items back into the fifo. Child Thread
18 * is returned back to Test Thread, it extracts all items from the fifo.
28 * Tests the ISR interfaces. Test thread puts items into fifo2 and gives
29 * control to the Child thread. Child thread gets items from fifo2 and then
30 * puts items into fifo1. Child thread gives back control to the Test thread
31 * and Test thread gets the items from fifo1.
63 /* Put items into fifo */ in tIsr_entry_put()
75 /* Get items from fifo */ in tIsr_entry_get()
88 /* Get items from fifo */ in thread_entry_fn_single()
94 /* Put items into fifo */ in thread_entry_fn_single()
109 /* Get items from fifo2 */ in thread_entry_fn_dual()
113 /* Put items into fifo1 */ in thread_entry_fn_dual()
120 /* Get items from fifo2 */ in thread_entry_fn_isr()
123 /* Put items into fifo1 */ in thread_entry_fn_isr()
137 * @details Test Thread enters items into a fifo, starts the Child Thread
138 * and waits for a semaphore. Child thread extracts all items from
139 * the fifo and enters some items back into the fifo. Child Thread
141 * is returned back to Test Thread, it extracts all items from the fifo.
152 /* Put items into fifo */ in ZTEST()
164 /* Get items from fifo */ in ZTEST()
208 * @details Tests the ISR interfaces. Test thread puts items into fifo2
209 * and gives control to the Child thread. Child thread gets items from
210 * fifo2 and then puts items into fifo1. Child thread gives back control
211 * to the Test thread and Test thread gets the items from fifo1.