Lines Matching full:options
142 void user_creatable_add_qapi(ObjectOptions *options, Error **errp) in user_creatable_add_qapi() argument
150 visit_type_ObjectOptions(v, NULL, &options, &error_abort); in user_creatable_add_qapi()
159 obj = user_creatable_add_type(ObjectType_str(options->qom_type), in user_creatable_add_qapi()
160 options->id, props, v, errp); in user_creatable_add_qapi()
245 qemu_printf("%s options:\n", type); in type_print_class_properties()
247 qemu_printf("There are no options for %s.\n", type); in type_print_class_properties()
286 ObjectOptions *options; in user_creatable_parse_str() local
309 visit_type_ObjectOptions(v, NULL, &options, errp); in user_creatable_parse_str()
313 return options; in user_creatable_parse_str()
319 ObjectOptions *options; in user_creatable_add_from_str() local
321 options = user_creatable_parse_str(str, errp); in user_creatable_add_from_str()
322 if (!options) { in user_creatable_add_from_str()
326 user_creatable_add_qapi(options, errp); in user_creatable_add_from_str()
327 qapi_free_ObjectOptions(options); in user_creatable_add_from_str()