Lines Matching full:head
50 * 1. Verify that the list's head is empty.
63 static qdata_t *head = NULL, *tail = &data_l[1]; in ZTEST() local
68 /* Check if the list of head is equal to null */ in ZTEST()
69 zassert_true(k_queue_append_list(&queue, (uint32_t *)head, in ZTEST()
71 "failed to CHECKIF head == NULL"); in ZTEST()
73 head = &data_l[0]; in ZTEST()
75 zassert_true(k_queue_append_list(&queue, (uint32_t *)head, in ZTEST()
82 head = &data_l[0]; in ZTEST()
83 head->snode.next = NULL; in ZTEST()
86 head, NULL, K_PRIO_PREEMPT(0), 0, K_NO_WAIT); in ZTEST()
90 k_queue_append_list(&queue, (uint32_t *)head, (uint32_t *)head); in ZTEST()