Searched refs:list_t (Results 1 – 6 of 6) sorted by relevance
/third_party/cups-filters/filter/foomatic-rip/ |
D | util.h | 184 } list_t; typedef 186 list_t * list_create(); 187 list_t * list_create_from_array(int count, void ** data); /* array values are NOT copied */ 188 void list_free(list_t *list); 190 size_t list_item_count(list_t *list); 192 list_t * list_copy(list_t *list); 194 void list_prepend(list_t *list, void *data); 195 void list_append(list_t *list, void *data); 196 void list_remove(list_t *list, listitem_t *item); 198 listitem_t * list_get(list_t *list, int idx); [all …]
|
D | util.c | 932 list_t * list_create() in list_create() 934 list_t *l = malloc(sizeof(list_t)); in list_create() 940 list_t * list_create_from_array(int count, void ** data) in list_create_from_array() 943 list_t *l = list_create(); in list_create_from_array() 951 void list_free(list_t *list) in list_free() 961 size_t list_item_count(list_t *list) in list_item_count() 970 list_t * list_copy(list_t *list) in list_copy() 972 list_t *l = list_create(); in list_copy() 980 void list_prepend(list_t *list, void *data) in list_prepend() 1002 void list_append(list_t *list, void *data) in list_append() [all …]
|
D | spooler.h | 31 void init_cups(list_t *arglist, dstr_t *filelist, jobparams_t *job); 32 void init_direct(list_t *arglist, dstr_t *filelist, jobparams_t *job);
|
D | spooler.c | 41 void init_cups(list_t *arglist, dstr_t *filelist, jobparams_t *job) in init_cups() 195 void init_direct(list_t *arglist, dstr_t *filelist, jobparams_t *job) in init_direct()
|
D | foomaticrip.c | 792 list_t * arglist; in main()
|
D | options.c | 77 list_t *qualifier_data = NULL;
|