Lines Matching full:model
23 #define SYSINFO_MODEL "Model:"
33 char type[8], model[33], version[8], manufacturer[32], authorization[8]; in get_cpuid() local
42 * Manufacturer:, Type: and Model:, for example: in get_cpuid()
45 * Model: 702 N96 in get_cpuid()
46 * The first word is the Model Capacity and the second word is in get_cpuid()
47 * Model (can be omitted). Both words have a maximum size of 16 in get_cpuid()
52 memset(model, 0, sizeof(model)); in get_cpuid()
83 mdsize += scnprintf(model + mdsize, sizeof(model) - mdsize, in get_cpuid()
84 "%s%s", model[0] ? "," : "", cp); in get_cpuid()
91 /* Missing manufacturer, type or model information should not happen */ in get_cpuid()
92 if (!manufacturer[0] || !type[0] || !model[0]) in get_cpuid()
132 manufacturer, type, model, version, in get_cpuid()
136 model); in get_cpuid()