Lines Matching refs:tn_next
930 tn->tn_next[t] = tl->tl_head[t]; in txg_list_add()
956 for (tp = &tl->tl_head[t]; *tp != NULL; tp = &(*tp)->tn_next[t]) in txg_list_add_tail()
960 tn->tn_next[t] = NULL; in txg_list_add_tail()
982 ASSERT(tn->tn_next[t] == NULL || tn->tn_next[t]->tn_member[t]); in txg_list_remove()
984 tl->tl_head[t] = tn->tn_next[t]; in txg_list_remove()
985 tn->tn_next[t] = NULL; in txg_list_remove()
1005 for (tp = &tl->tl_head[t]; (tn = *tp) != NULL; tp = &tn->tn_next[t]) { in txg_list_remove_this()
1007 *tp = tn->tn_next[t]; in txg_list_remove_this()
1008 tn->tn_next[t] = NULL; in txg_list_remove_this()
1056 tn = tn->tn_next[t]; in txg_list_next()