Lines Matching full:fifo1
22 * extract an item from fifo1 once the item is there. The Child Thread
24 * an item to fifo1. The flow of control goes from Test Thread to
30 * puts items into fifo1. Child thread gives back control to the Test thread
31 * and Test thread gets the items from fifo1.
46 static K_FIFO_DEFINE(fifo1);
113 /* Put items into fifo1 */ in thread_entry_fn_dual()
123 /* Put items into fifo1 */ in thread_entry_fn_isr()
154 k_fifo_put(&fifo1, (void *)&data1[i]); in ZTEST()
158 thread_entry_fn_single, &fifo1, NULL, NULL, in ZTEST()
166 rx_data = k_fifo_get(&fifo1, K_NO_WAIT); in ZTEST()
177 * extract an item from fifo1 once the item is there. The Child Thread
179 * an item to fifo1. The flow of control goes from Test Thread to
189 thread_entry_fn_dual, &fifo1, &fifo2, NULL, in ZTEST()
197 rx_data = k_fifo_get(&fifo1, K_FOREVER); in ZTEST()
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.
221 thread_entry_fn_isr, &fifo1, &fifo2, NULL, in ZTEST()
232 irq_offload(tIsr_entry_get, (const void *)&fifo1); in ZTEST()