Lines Matching full:model
43 "model", in x86_cpu_static_props()
45 "model-id", in x86_cpu_static_props()
84 /* Convert CPU model data from X86CPU object to a property dictionary
85 * that can recreate exactly the same CPU model.
98 /* Convert CPU model data from X86CPU object to a property dictionary
99 * that can recreate exactly the same CPU model, including every
153 /* Create X86CPU object according to model+props specification */
154 static X86CPU *x86_cpu_from_model(const char *model, QObject *props, in x86_cpu_from_model() argument
161 xcc = X86_CPU_CLASS(cpu_class_by_name(TYPE_X86_CPU, model)); in x86_cpu_from_model()
163 error_setg(&err, "CPU model '%s' not found", model); in x86_cpu_from_model()
191 CpuModelInfo *model, in qmp_query_cpu_model_expansion() argument
200 xc = x86_cpu_from_model(model->name, model->props, "model.props", &err); in qmp_query_cpu_model_expansion()
206 ret->model = g_new0(CpuModelInfo, 1); in qmp_query_cpu_model_expansion()
207 ret->model->props = QOBJECT(props); in qmp_query_cpu_model_expansion()
217 * to keep the original model name+props, and add extra in qmp_query_cpu_model_expansion()
220 base_name = model->name; in qmp_query_cpu_model_expansion()
230 ret->model->name = g_strdup(base_name); in qmp_query_cpu_model_expansion()