Home
last modified time | relevance | path

Searched refs:compStream (Results 1 – 3 of 3) sorted by relevance

/external/libvncserver/libvncserver/
Dzlib.c157 cl->compStream.next_in = ( Bytef * )zlibBeforeBuf; in rfbSendOneRectEncodingZlib()
158 cl->compStream.avail_in = w * h * (cl->format.bitsPerPixel / 8); in rfbSendOneRectEncodingZlib()
159 cl->compStream.next_out = ( Bytef * )zlibAfterBuf; in rfbSendOneRectEncodingZlib()
160 cl->compStream.avail_out = maxCompSize; in rfbSendOneRectEncodingZlib()
161 cl->compStream.data_type = Z_BINARY; in rfbSendOneRectEncodingZlib()
166 cl->compStream.total_in = 0; in rfbSendOneRectEncodingZlib()
167 cl->compStream.total_out = 0; in rfbSendOneRectEncodingZlib()
168 cl->compStream.zalloc = Z_NULL; in rfbSendOneRectEncodingZlib()
169 cl->compStream.zfree = Z_NULL; in rfbSendOneRectEncodingZlib()
170 cl->compStream.opaque = Z_NULL; in rfbSendOneRectEncodingZlib()
[all …]
Drfbserver.c446 cl->compStream.total_in = 0; in rfbNewTCPOrUDPClient()
447 cl->compStream.total_out = 0; in rfbNewTCPOrUDPClient()
448 cl->compStream.zalloc = Z_NULL; in rfbNewTCPOrUDPClient()
449 cl->compStream.zfree = Z_NULL; in rfbNewTCPOrUDPClient()
450 cl->compStream.opaque = Z_NULL; in rfbNewTCPOrUDPClient()
589 deflateEnd( &(cl->compStream) ); in rfbClientConnectionGone()
/external/libvncserver/rfb/
Drfb.h597 struct z_stream_s compStream; member