Lines Matching defs:vs
207 static inline uint32_t vnc_has_feature(VncState *vs, int feature) { in vnc_has_feature()
265 static void vnc_update(VncState *vs, int x, int y, int w, int h) in vnc_update()
292 VncState *vs = vd->clients; in vnc_dpy_update() local
299 static void vnc_framebuffer_update(VncState *vs, int x, int y, int w, int h, in vnc_framebuffer_update()
343 static void vnc_resize(VncState *vs) in vnc_resize()
383 VncState *vs = vd->clients; in vnc_dpy_resize() local
391 static void vnc_write_pixels_copy(VncState *vs, void *pixels, int size) in vnc_write_pixels_copy()
397 static void vnc_convert_pixel(VncState *vs, uint8_t *buf, uint32_t v) in vnc_convert_pixel()
440 static void vnc_write_pixels_generic(VncState *vs, void *pixels1, int size) in vnc_write_pixels_generic()
473 static void send_framebuffer_update_raw(VncState *vs, int x, int y, int w, int h) in send_framebuffer_update_raw()
521 static void send_framebuffer_update_hextile(VncState *vs, int x, int y, int w, int h) in send_framebuffer_update_hextile()
542 static void vnc_zlib_init(VncState *vs) in vnc_zlib_init()
549 static void vnc_zlib_start(VncState *vs) in vnc_zlib_start()
558 static int vnc_zlib_stop(VncState *vs, int stream_id) in vnc_zlib_stop()
613 static void send_framebuffer_update_zlib(VncState *vs, int x, int y, int w, int h) in send_framebuffer_update_zlib()
638 static void send_framebuffer_update(VncState *vs, int x, int y, int w, int h) in send_framebuffer_update()
655 static void vnc_copy(VncState *vs, int src_x, int src_y, int dst_x, int dst_y, int w, int h) in vnc_copy()
669 VncState *vs, *vn; in vnc_dpy_copy() local
706 VncState *vs = opaque; in vnc_update_client() local
818 VncState *vs = opaque; in audio_capture_notify() local
843 VncState *vs = opaque; in audio_capture() local
853 static void audio_add(VncState *vs) in audio_add()
873 static void audio_del(VncState *vs) in audio_del()
881 static void vnc_disconnect_start(VncState *vs) in vnc_disconnect_start()
890 static void vnc_disconnect_finish(VncState *vs) in vnc_disconnect_finish()
924 int vnc_client_io_error(VncState *vs, int ret, int last_errno) in vnc_client_io_error()
950 void vnc_client_error(VncState *vs) in vnc_client_error()
972 long vnc_client_write_buf(VncState *vs, const uint8_t *data, size_t datalen) in vnc_client_write_buf()
1003 static long vnc_client_write_plain(VncState *vs) in vnc_client_write_plain()
1043 VncState *vs = opaque; in vnc_client_write() local
1055 void vnc_read_when(VncState *vs, VncReadEvent *func, size_t expecting) in vnc_read_when()
1077 long vnc_client_read_buf(VncState *vs, uint8_t *data, size_t datalen) in vnc_client_read_buf()
1106 static long vnc_client_read_plain(VncState *vs) in vnc_client_read_plain()
1127 VncState *vs = opaque; in vnc_client_read() local
1161 void vnc_write(VncState *vs, const void *data, size_t len) in vnc_write()
1172 void vnc_write_s32(VncState *vs, int32_t value) in vnc_write_s32()
1177 void vnc_write_u32(VncState *vs, uint32_t value) in vnc_write_u32()
1189 void vnc_write_u16(VncState *vs, uint16_t value) in vnc_write_u16()
1199 void vnc_write_u8(VncState *vs, uint8_t value) in vnc_write_u8()
1204 void vnc_flush(VncState *vs) in vnc_flush()
1232 static void client_cut_text(VncState *vs, size_t len, uint8_t *text) in client_cut_text()
1236 static void check_pointer_type_change(VncState *vs, int absolute) in check_pointer_type_change()
1250 static void pointer_event(VncState *vs, int button_mask, int x, int y) in pointer_event()
1287 static void reset_keys(VncState *vs) in reset_keys()
1300 static void press_key(VncState *vs, int keysym) in press_key()
1306 static void do_key_event(VncState *vs, int down, int keycode, int sym) in do_key_event()
1459 static void key_event(VncState *vs, int down, uint32_t sym) in key_event()
1470 static void ext_key_event(VncState *vs, int down, in ext_key_event()
1480 static void framebuffer_update_request(VncState *vs, int incremental, in framebuffer_update_request()
1506 static void send_ext_key_event_ack(VncState *vs) in send_ext_key_event_ack()
1516 static void send_ext_audio_ack(VncState *vs) in send_ext_audio_ack()
1526 static void set_encodings(VncState *vs, int32_t *encodings, size_t n_encodings) in set_encodings()
1585 static void set_pixel_conversion(VncState *vs) in set_pixel_conversion()
1618 static void set_pixel_format(VncState *vs, in set_pixel_format()
1653 static void pixel_format_message (VncState *vs) { in pixel_format_message()
1689 static void vnc_colordepth(VncState *vs) in vnc_colordepth()
1705 static int protocol_client_msg(VncState *vs, uint8_t *data, size_t len) in protocol_client_msg()
1841 static int protocol_client_init(VncState *vs, uint8_t *data, size_t len) in protocol_client_init()
1865 void start_client_init(VncState *vs) in start_client_init()
1870 static void make_challenge(VncState *vs) in make_challenge()
1880 static int protocol_client_auth_vnc(VncState *vs, uint8_t *data, size_t len) in protocol_client_auth_vnc()
1930 void start_auth_vnc(VncState *vs) in start_auth_vnc()
1941 static int protocol_client_auth(VncState *vs, uint8_t *data, size_t len) in protocol_client_auth()
1999 static int protocol_version(VncState *vs, uint8_t *version, size_t len) in protocol_version()
2060 VncState *vs = qemu_mallocz(sizeof(VncState)); in vnc_connect() local
2094 VncDisplay *vs = opaque; in vnc_listen_read() local
2109 VncDisplay *vs = qemu_mallocz(sizeof(*vs)); in vnc_display_init() local
2139 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; in vnc_display_close() local
2161 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; in vnc_display_password() local
2177 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; in vnc_display_local_addr() local
2184 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; in vnc_display_open() local