Lines Matching defs:man_mod
3124 manufacturer_model_type *man_mod = usbid->name;
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;
3177 manufacturer_model_type *man_mod = scsiid->name;
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;