Lines Matching full:model
25 #define SYSINFO_MODEL "Model:"
35 char type[8], model[33], version[8], manufacturer[32], authorization[8]; in get_cpuid() local
44 * Manufacturer:, Type: and Model:, for example: in get_cpuid()
47 * Model: 702 N96 in get_cpuid()
48 * The first word is the Model Capacity and the second word is in get_cpuid()
49 * Model (can be omitted). Both words have a maximum size of 16 in get_cpuid()
54 memset(model, 0, sizeof(model)); in get_cpuid()
85 mdsize += scnprintf(model + mdsize, sizeof(model) - mdsize, in get_cpuid()
86 "%s%s", model[0] ? "," : "", cp); in get_cpuid()
93 /* Missing manufacturer, type or model information should not happen */ in get_cpuid()
94 if (!manufacturer[0] || !type[0] || !model[0]) in get_cpuid()
134 manufacturer, type, model, version, in get_cpuid()
138 model); in get_cpuid()