Home
last modified time | relevance | path

Searched refs:l_tail (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/io/1394/targets/av1394/
H A Dav1394_list.c47 lp->l_head = lp->l_tail = NULL; in av1394_list_init()
70 ITEM(item)->i_prev = lp->l_tail; in av1394_list_put_tail()
71 if (lp->l_tail == NULL) { in av1394_list_put_tail()
74 lp->l_head = lp->l_tail = item; in av1394_list_put_tail()
76 lp->l_tail->i_next = item; in av1394_list_put_tail()
77 lp->l_tail = item; in av1394_list_put_tail()
92 ASSERT(lp->l_tail == 0); in av1394_list_put_head()
94 lp->l_head = lp->l_tail = item; in av1394_list_put_head()
114 if (item == lp->l_tail) { in av1394_list_get_head()
117 lp->l_tail = NULL; in av1394_list_get_head()
/illumos-gate/usr/src/cmd/prstat/
H A Dprstat.c634 lwp->li_prev = list->l_tail; in list_add_lwp()
635 ((lwp_info_t *)list->l_tail)->li_next = lwp; in list_add_lwp()
636 list->l_tail = lwp; in list_add_lwp()
655 list->l_tail = lwp->li_prev; /* removing the tail */ in list_remove_lwp()
667 lwp_info_t *lwp = list->l_tail; in list_clear()
686 list->l_head = list->l_tail = NULL; in list_clear()
696 list->l_head = list->l_tail = id = Zalloc(sizeof (id_info_t)); in list_update()
738 id = list->l_tail; in list_update()
740 id->id_next->id_prev = list->l_tail; in list_update()
742 list->l_tail = id->id_next; in list_update()
[all …]
H A Dprstat.h153 void *l_tail; /* pointer to the tail of the list */ member
/illumos-gate/usr/src/uts/common/sys/1394/targets/av1394/
H A Dav1394_impl.h72 av1394_list_item_t *l_tail; /* last item */ member