Lines Matching defs:value
1668 * if the throttle_output_offset value is exceeded. So we only reach
1697 void vnc_write_s32(VncState *vs, int32_t value)
1699 vnc_write_u32(vs, *(uint32_t *)&value);
1702 void vnc_write_u32(VncState *vs, uint32_t value)
1706 buf[0] = (value >> 24) & 0xFF;
1707 buf[1] = (value >> 16) & 0xFF;
1708 buf[2] = (value >> 8) & 0xFF;
1709 buf[3] = value & 0xFF;
1714 void vnc_write_u16(VncState *vs, uint16_t value)
1718 buf[0] = (value >> 8) & 0xFF;
1719 buf[1] = value & 0xFF;
1724 void vnc_write_u8(VncState *vs, uint8_t value)
1726 vnc_write(vs, (char *)&value, 1);
3936 single_saddr = saddr_list->value;
3992 if (qio_channel_socket_connect_sync(sioc, saddr_list->value, errp) < 0) {
4014 el->value, 1,
4029 el->value, 1,