Lines Matching refs:length
48 cliprdr_send_packet(uint16 type, uint16 status, uint8 * data, uint32 length)
52 DEBUG_CLIPBOARD(("CLIPRDR send: type=%d, status=%d, length=%d\n", type, status, length));
54 s = channel_init(cliprdr_channel, length + 12);
57 out_uint32_le(s, length);
58 out_uint8p(s, data, length);
115 cliprdr_send_data(uint8 * data, uint32 length)
118 cliprdr_send_packet(CLIPRDR_DATA_RESPONSE, CLIPRDR_RESPONSE, data, length);
125 uint32 length, format;
130 in_uint32_le(s, length);
133 DEBUG_CLIPBOARD(("CLIPRDR recv: type=%d, status=%d, length=%d\n", type, status, length));
161 ui_clip_format_announce(data, length);
171 ui_clip_handle_data(data, length);