Lines Matching refs:p1
23 void test_thread_pend_and_timeout(void *p1, void *p2, void *p3);
92 static void thread_entry_nowait(void *p1, void *p2, void *p3) in thread_entry_nowait() argument
96 ret = k_lifo_get((struct k_lifo *)p1, K_FOREVER); in thread_entry_nowait()
101 ret = k_lifo_get((struct k_lifo *)p1, K_FOREVER); in thread_entry_nowait()
148 static void thread_entry_wait(void *p1, void *p2, void *p3) in thread_entry_wait() argument
150 k_lifo_put((struct k_lifo *)p1, (void *)&lifo_data[0]); in thread_entry_wait()
152 k_lifo_put((struct k_lifo *)p1, (void *)&lifo_data[1]); in thread_entry_wait()
176 static void test_thread_timeout_reply_values(void *p1, void *p2, void *p3) in test_thread_timeout_reply_values() argument
178 struct reply_packet *reply_packet = (struct reply_packet *)p1; in test_thread_timeout_reply_values()
189 static void test_thread_timeout_reply_values_wfe(void *p1, void *p2, void *p3) in test_thread_timeout_reply_values_wfe() argument
191 struct reply_packet *reply_packet = (struct reply_packet *)p1; in test_thread_timeout_reply_values_wfe()
204 static void test_thread_put_timeout(void *p1, void *p2, void *p3) in test_thread_put_timeout() argument
209 k_lifo_put((struct k_lifo *)p1, get_scratch_packet()); in test_thread_put_timeout()
398 void test_thread_pend_and_timeout(void *p1, void *p2, void *p3) in test_thread_pend_and_timeout() argument
400 struct timeout_order_data *d = (struct timeout_order_data *)p1; in test_thread_pend_and_timeout()