Home | History | Annotate | Download | only in qemu

Lines Matching refs:VncState

157 static void do_info_vnc_client(Monitor *mon, VncState *client)
202 VncState *client = vnc_display->clients;
213 static inline uint32_t vnc_has_feature(VncState *vs, int feature) {
225 static void vnc_disconnect_start(VncState *vs);
226 static void vnc_disconnect_finish(VncState *vs);
228 static void vnc_colordepth(VncState *vs);
271 static void vnc_update(VncState *vs, int x, int y, int w, int h)
298 VncState *vs = vd->clients;
305 static void vnc_framebuffer_update(VncState *vs, int x, int y, int w, int h,
349 static void vnc_resize(VncState *vs)
389 VncState *vs = vd->clients;
397 static void vnc_write_pixels_copy(VncState *vs, void *pixels, int size)
403 static void vnc_convert_pixel(VncState *vs, uint8_t *buf, uint32_t v)
446 static void vnc_write_pixels_generic(VncState *vs, void *pixels1, int size)
475 fprintf(stderr, "vnc_write_pixels_generic: VncState color depth not supported\n");
479 static void send_framebuffer_update_raw(VncState *vs, int x, int y, int w, int h)
527 static void send_framebuffer_update_hextile(VncState *vs, int x, int y, int w, int h)
548 static void vnc_zlib_init(VncState *vs)
555 static void vnc_zlib_start(VncState *vs)
564 static int vnc_zlib_stop(VncState *vs, int stream_id)
619 static void send_framebuffer_update_zlib(VncState *vs, int x, int y, int w, int h)
644 static void send_framebuffer_update(VncState *vs, int x, int y, int w, int h)
661 static void vnc_copy(VncState *vs, int src_x, int src_y, int dst_x, int dst_y, int w, int h)
675 VncState *vs, *vn;
712 VncState *vs = opaque;
824 VncState *vs = opaque;
849 VncState *vs = opaque;
859 static void audio_add(VncState *vs)
879 static void audio_del(VncState *vs)
887 static void vnc_disconnect_start(VncState *vs)
896 static void vnc_disconnect_finish(VncState *vs)
910 VncState *p, *parent = NULL;
930 int vnc_client_io_error(VncState *vs, int ret, int last_errno)
956 void vnc_client_error(VncState *vs)
978 long vnc_client_write_buf(VncState *vs, const uint8_t *data, size_t datalen)
1009 static long vnc_client_write_plain(VncState *vs)
1049 VncState *vs = opaque;
1061 void vnc_read_when(VncState *vs, VncReadEvent *func, size_t expecting)
1083 long vnc_client_read_buf(VncState *vs, uint8_t *data, size_t datalen)
1112 static long vnc_client_read_plain(VncState *vs)
1133 VncState *vs = opaque;
1167 void vnc_write(VncState *vs, const void *data, size_t len)
1178 void vnc_write_s32(VncState *vs, int32_t value)
1183 void vnc_write_u32(VncState *vs, uint32_t value)
1195 void vnc_write_u16(VncState *vs, uint16_t value)
1205 void vnc_write_u8(VncState *vs, uint8_t value)
1210 void vnc_flush(VncState *vs)
1238 static void client_cut_text(VncState *vs, size_t len, uint8_t *text)
1242 static void check_pointer_type_change(VncState *vs, int absolute)
1256 static void pointer_event(VncState *vs, int button_mask, int x, int y)
1293 static void reset_keys(VncState *vs)
1306 static void press_key(VncState *vs, int keysym)
1312 static void do_key_event(VncState *vs, int down, int keycode, int sym)
1465 static void key_event(VncState *vs, int down, uint32_t sym)
1476 static void ext_key_event(VncState *vs, int down,
1486 static void framebuffer_update_request(VncState *vs, int incremental,
1512 static void send_ext_key_event_ack(VncState *vs)
1522 static void send_ext_audio_ack(VncState *vs)
1532 static void set_encodings(VncState *vs, int32_t *encodings, size_t n_encodings)
1591 static void set_pixel_conversion(VncState *vs)
1624 static void set_pixel_format(VncState *vs,
1659 static void pixel_format_message (VncState *vs) {
1695 static void vnc_colordepth(VncState *vs)
1711 static int protocol_client_msg(VncState *vs, uint8_t *data, size_t len)
1847 static int protocol_client_init(VncState *vs, uint8_t *data, size_t len)
1871 void start_client_init(VncState *vs)
1876 static void make_challenge(VncState *vs)
1886 static int protocol_client_auth_vnc(VncState *vs, uint8_t *data, size_t len)
1936 void start_auth_vnc(VncState *vs)
1947 static int protocol_client_auth(VncState *vs, uint8_t *data, size_t len)
2005 static int protocol_version(VncState *vs, uint8_t *version, size_t len)
2066 VncState *vs = qemu_mallocz(sizeof(VncState));