Lines Matching defs:next
134 struct url_entry *next;
141 struct model_entry *next;
158 struct desc_entry *next;
167 struct mfg_entry *next;
177 struct type_entry *next;
186 struct backend_entry *next;
199 struct model_record_entry *next;
216 struct mfg_record_entry *next;
229 struct manufacturer_model_type * next;
236 struct usbid_type * next;
245 struct scsiid_type * next;
550 url = url->next;
558 while (url->next)
559 url = url->next;
560 url->next = calloc (1, sizeof (url_entry));
561 url = url->next;
577 /* Get the next token, ignoring escaped quotation marks */
903 current_model = current_model->next;
905 current_mfg = current_mfg->next;
908 current_type = current_type->next;
989 be->next = be_tmp;
993 prev_be->next = be;
997 be = be->next;
1001 prev_be->next = new_be;
1002 be = prev_be->next;
1168 while (type->next)
1169 type = type->next;
1170 type->next = calloc (1, sizeof (type_entry));
1171 type = type->next;
1290 while (mfg->next)
1291 mfg = mfg->next;
1292 mfg->next = calloc (1, sizeof (mfg_entry));
1293 mfg = mfg->next;
1338 while (model->next)
1339 model = model->next;
1340 model->next = calloc (1, sizeof (model_entry));
1341 model = model->next;
1671 tmp_model_record = model_record->next;
1676 model_record->next = tmp_model_record;
1680 prev_model_record->next = model_record;
1684 model_record = model_record->next;
1688 prev_model_record->next = create_model_record (model);
1689 model_record = prev_model_record->next;
1721 mfg_url = mfg_url->next;
1725 mfg_record = mfg_record->next;
1745 url = url->next;
1763 mfg_record->next = tmp_mfg_record;
1767 prev_mfg_record->next = mfg_record;
1771 mfg_record = mfg_record->next;
1775 prev_mfg_record->next = new_mfg_record;
1776 mfg_record = prev_mfg_record->next;
1789 model = model->next;
1814 mfg = mfg->next;
1817 type = type->next;
1819 be = be->next;
1859 url = url->next;
1901 url = url->next;
1927 url = url->next;
1986 url = url->next;
1996 model = model->next;
2001 mfg = mfg->next;
2006 type = type->next;
2010 be = be->next;
2095 url = url->next;
2139 url = url->next;
2167 url = url->next;
2231 url = url->next;
2242 model = model->next;
2249 mfg = mfg->next;
2254 type = type->next;
2260 be = be->next;
2286 type = type->next;
2292 type = type->next;
2306 model = model->next;
2309 mfg = mfg->next;
2312 type = type->next;
2314 be = be->next;
2459 type = type->next;
2469 be = be->next;
2519 url = url->next;
2547 type = type->next;
2554 type = type->next;
2579 model = model->next;
2626 model = model->next;
2630 mfg = mfg->next;
2634 type = type->next;
2636 be = be->next;
2659 mfg_record = mfg_record->next;
2682 url = url->next;
2691 mfg_record = mfg_record->next;
2766 model_record = model_record->next;
2769 mfg_record = mfg_record->next;
3082 usbid->name->next = 0;
3083 usbid->next = 0;
3101 scsiid->name->next = 0;
3102 scsiid->next = 0;
3126 while (man_mod->next)
3127 man_mod = man_mod->next;
3128 man_mod->next = malloc (sizeof (manufacturer_model_type));
3129 man_mod->next->name = malloc (strlen (manufacturer) + strlen (model) + 3);
3130 sprintf (man_mod->next->name, "%s %s", manufacturer, model);
3131 man_mod->next->next = 0;
3142 tmp_usbid->next = usbid;
3144 prev_usbid->next = tmp_usbid;
3150 usbid = usbid->next;
3154 prev_usbid->next = create_usbid (manufacturer, model, usb_vendor_id, usb_product_id);
3155 usbid = prev_usbid->next;
3179 while (man_mod->next)
3180 man_mod = man_mod->next;
3181 man_mod->next = malloc (sizeof (manufacturer_model_type));
3182 man_mod->next->name = malloc (strlen (manufacturer) + strlen (model) + 3);
3183 sprintf (man_mod->next->name, "%s %s", manufacturer, model);
3184 man_mod->next->next = 0;
3195 tmp_scsiid->next = scsiid;
3197 prev_scsiid->next = tmp_scsiid;
3203 scsiid = scsiid->next;
3207 prev_scsiid->next = create_scsiid (manufacturer, model, scsi_vendor_id, scsi_product_id, is_processor);
3208 scsiid = prev_scsiid->next;
3223 for (be = first_backend; be; be = be->next)
3230 for (type = be->type; type; type = type->next)
3237 for (mfg = type->mfg; mfg; mfg = mfg->next)
3244 for (model = mfg->model; model; model = model->next)
3274 for (be = first_backend; be; be = be->next)
3281 for (type = be->type; type; type = type->next)
3288 for (mfg = type->mfg; mfg; mfg = mfg->next)
3295 for (model = mfg->model; model; model = model->next)
3382 name = name->next;
3388 usbid = usbid->next;
3445 name = name->next;
3450 usbid = usbid->next;
3529 name = name->next;
3553 usbid = usbid->next;
3587 scsiid = scsiid->next;
3595 scsiid = scsiid->next;
3606 name = name->next;
3630 scsiid = scsiid->next;
3704 scsiid = scsiid->next;
3712 scsiid = scsiid->next;
3723 name = name->next;
3743 scsiid = scsiid->next;
3793 name = name->next;
3824 usbid = usbid->next;
3853 usbid = usbid->next;
3887 scsiid = scsiid->next;
3907 name = name->next;
3914 scsiid = scsiid->next;
3953 name = name->next;
3968 usbid = usbid->next;