Home | History | Annotate | Download | only in glib

Lines Matching refs:new_list

114   GSList *new_list;
117 new_list = _g_slist_alloc ();
118 new_list->data = data;
119 new_list->next = NULL;
125 last->next = new_list;
130 return new_list;
158 GSList *new_list;
160 new_list = _g_slist_alloc ();
161 new_list->data = data;
162 new_list->next = list;
164 return new_list;
187 GSList *new_list;
194 new_list = _g_slist_alloc ();
195 new_list->data = data;
199 new_list->next = NULL;
200 return new_list;
214 new_list->next = prev_list->next;
215 prev_list->next = new_list;
219 new_list->next = list;
220 list = new_list;
468 GSList *new_list = NULL;
474 new_list = _g_slist_alloc ();
475 new_list->data = list->data;
476 last = new_list;
488 return new_list;
756 GSList *new_list;
763 new_list = _g_slist_alloc ();
764 new_list->data = data;
765 new_list->next = NULL;
766 return new_list;
779 new_list = _g_slist_alloc ();
780 new_list->data = data;
784 tmp_list->next = new_list;
785 new_list->next = NULL;
791 prev_list->next = new_list;
792 new_list->next = tmp_list;
797 new_list->next = list;
798 return new_list;