Lines Matching refs:opts
1556 CharDriverState *text_console_init(QemuOpts *opts)
1572 width = qemu_opt_get_number(opts, "width", 0);
1574 width = qemu_opt_get_number(opts, "cols", 0) * FONT_WIDTH;
1576 height = qemu_opt_get_number(opts, "height", 0);
1578 height = qemu_opt_get_number(opts, "rows", 0) * FONT_HEIGHT;
1601 QemuOpts *opts;
1605 opts = qemu_opts_create(qemu_find_opts("chardev"), label, 1);
1606 if (NULL == opts)
1616 qemu_opt_set(opts, "width", temp);
1625 qemu_opt_set(opts, "height", temp);
1628 return text_console_init(opts);