Lines Matching defs:manufacturer
1358 ("adding model entry %s to manufacturer `%s'\n",
1535 ("setting comment of manufacturer %s to `%s'\n",
1636 /* First model for this manufacturer */
1698 /* Insert manufacturer into list at the alphabetically correct position, */
1749 /* We already have one manufacturer in the list */
2641 /* Generate one table per manufacturer constructed of all backends */
2980 /* Print the HTML page with one table of models per manufacturer */
3072 create_usbid (char *manufacturer, char *model,
3080 usbid->name->name = calloc (1, strlen (manufacturer) + strlen (model) + 3);
3081 sprintf (usbid->name->name, "%s %s", manufacturer, model);
3085 manufacturer, model);
3090 create_scsiid (char *manufacturer, char *model,
3099 scsiid->name->name = calloc (1, strlen (manufacturer) + strlen (model) + 3);
3100 sprintf (scsiid->name->name, "%s %s", manufacturer, model);
3104 manufacturer, model);
3109 add_usbid (usbid_type *first_usbid, char *manufacturer, char *model,
3116 first_usbid = create_usbid (manufacturer, model, usb_vendor_id, usb_product_id);
3129 man_mod->next->name = malloc (strlen (manufacturer) + strlen (model) + 3);
3130 sprintf (man_mod->next->name, "%s %s", manufacturer, model);
3132 DBG_DBG ("Added manufacturer/model %s %s to USB ids %s/%s\n", manufacturer, model,
3141 tmp_usbid = create_usbid (manufacturer, model, usb_vendor_id, usb_product_id);
3154 prev_usbid->next = create_usbid (manufacturer, model, usb_vendor_id, usb_product_id);
3162 add_scsiid (scsiid_type *first_scsiid, char *manufacturer, char *model,
3169 first_scsiid = create_scsiid (manufacturer, model, scsi_vendor_id, scsi_product_id, is_processor);
3182 man_mod->next->name = malloc (strlen (manufacturer) + strlen (model) + 3);
3183 sprintf (man_mod->next->name, "%s %s", manufacturer, model);
3185 DBG_DBG ("Added manufacturer/model %s %s to SCSI ids %s/%s\n", manufacturer, model,
3194 tmp_scsiid = create_scsiid (manufacturer, model, scsi_vendor_id, scsi_product_id, is_processor);
3207 prev_scsiid->next = create_scsiid (manufacturer, model, scsi_vendor_id, scsi_product_id, is_processor);