/qemu/ui/ |
H A D | vnc-enc-tight.c | 119 if (vs->tight->type != VNC_ENCODING_TIGHT_PNG) { in tight_can_send_png_rect() 147 unsigned char *buf = vs->tight->tight.buffer; in tight_detect_smooth_image24() 218 unsigned char *buf = vs->tight->tight.buffer; \ 299 int compression = vs->tight->compression; in tight_detect_smooth_image() 300 int quality = vs->tight->quality; in tight_detect_smooth_image() 312 if (vs->tight->quality != (uint8_t)-1) { in tight_detect_smooth_image() 323 if (vs->tight->pixel24) { in tight_detect_smooth_image() 325 if (vs->tight->quality != (uint8_t)-1) { in tight_detect_smooth_image() 355 data = (uint##bpp##_t *)vs->tight->tight.buffer; \ 426 max = count / tight_conf[vs->tight->compression].idx_max_colors_divisor; in tight_fill_palette() [all …]
|
H A D | vnc-enc-zlib.c | 79 err = deflateInit2(zstream, vs->tight->compression, Z_DEFLATED, in vnc_zlib_stop() 88 vs->zlib.level = vs->tight->compression; in vnc_zlib_stop() 92 if (vs->tight->compression != vs->zlib.level) { in vnc_zlib_stop() 93 if (deflateParams(zstream, vs->tight->compression, in vnc_zlib_stop() 97 vs->zlib.level = vs->tight->compression; in vnc_zlib_stop()
|
H A D | vnc-jobs.c | 192 local->tight = orig->tight; in vnc_async_encoding_start() 203 orig->tight = local->tight; in vnc_async_encoding_end()
|
H A D | vnc-enc-zrle.c | 263 if (!vs->vd->lossy || vs->tight->quality == (uint8_t)-1 in zrle_send_framebuffer_update() 264 || vs->tight->quality == 9) { in zrle_send_framebuffer_update() 267 } else if (vs->tight->quality < 3) { in zrle_send_framebuffer_update() 269 } else if (vs->tight->quality < 6) { in zrle_send_framebuffer_update()
|
H A D | vnc.h | 195 Buffer tight; member 342 VncTight *tight; member
|
H A D | vnc.c | 1364 g_free(vs->tight); in vnc_disconnect_finish() 2134 vs->tight->compression = 9; in set_encodings() 2135 vs->tight->quality = -1; /* Lossless by default */ in set_encodings() 2223 vs->tight->compression = (enc & 0x0F); in set_encodings() 2227 vs->tight->quality = (enc & 0x0F); in set_encodings() 3250 vs->tight = g_new0(VncTight, 1); in vnc_connect() 3262 buffer_init(&vs->tight->tight, "vnc-tight/%p", sioc); in vnc_connect() 3263 buffer_init(&vs->tight->zlib, "vnc-tight-zlib/%p", sioc); in vnc_connect() 3264 buffer_init(&vs->tight->gradient, "vnc-tight-gradient/%p", sioc); in vnc_connect() 3266 buffer_init(&vs->tight->jpeg, "vnc-tight-jpeg/%p", sioc); in vnc_connect() [all …]
|
H A D | meson.build | 36 'vnc-enc-tight.c',
|
/qemu/chardev/ |
H A D | char-socket.c | 421 const char *tight = "", *abstract = ""; in qemu_chr_socket_address() local 427 if (sa->has_tight && sa->tight) { in qemu_chr_socket_address() 428 tight = ",tight=on"; in qemu_chr_socket_address() 434 abstract, tight, in qemu_chr_socket_address() 1476 bool tight = qemu_opt_get_bool(opts, "tight", true); in qemu_chr_parse_socket() local 1542 q_unix->tight = tight; in qemu_chr_parse_socket()
|
/qemu/tests/unit/ |
H A D | test-util-sockets.c | 315 addr.u.q_unix.tight = false; in test_socket_unix_abstract() 319 addr_tight.u.q_unix.tight = true; in test_socket_unix_abstract() 323 addr_padded.u.q_unix.tight = false; in test_socket_unix_abstract()
|
/qemu/qapi/ |
H A D | sockets.json | 106 # @tight: if false, pad an abstract socket address with enough null 116 '*tight': { 'type': 'bool', 'if': 'CONFIG_LINUX' } } }
|
H A D | ui.json | 583 'data': [ 'none', 'vnc', 'ra2', 'ra2ne', 'tight', 'ultra',
|
/qemu/docs/specs/ |
H A D | fsi.rst | 38 processors. This now makes an appearance in the ASPEED SoC due to tight
|
/qemu/util/ |
H A D | qemu-sockets.c | 947 return !saddr->has_tight || saddr->tight; in saddr_is_tight() 1411 addr->u.q_unix.tight = salen < sizeof(su->sun_path); in socket_sockaddr_to_address_unix()
|
/qemu/ |
H A D | qemu-options.hx | 2883 …"-netdev stream,id=str[,server=on|off],addr.type=unix,addr.path=path[,abstract=on|off][,tight=on|o… 3384 ``-netdev stream,id=str[,server=on|off],addr.type=unix,addr.path=path[,abstract=on|off][,tight=on|o… 3396 ``tight=on|off`` 3731 …" [,mux=on|off][,logfile=PATH][,logappend=on|off][,abstract=on|off][,tight=on|off] (unix)\… 3899 ``unix options: path=path[,abstract=on|off][,tight=on|off]`` 3904 ``tight=on|off`` sets the socket length of abstract sockets to their minimum,
|