Home | History | Annotate | Download | only in delphi

Lines Matching defs:Read

26     total_in: Longint;    // total nb of input bytes read so far
54 property OnProgress: TNotifyEvent read FOnProgress write FOnProgress;
91 function Read(var Buffer; Count: Longint): Longint; override;
94 property CompressionRate: Single read GetCompressionRate;
98 { TDecompressionStream decompresses data on the fly as data is read from it.
101 is read-only and unidirectional; you can seek forward in the stream, but not
109 have been read from the stream so far.
112 compressed data is exhausted and the next block is read from the input stream.
120 function Read(var Buffer; Count: Longint): Longint; override;
439 function TCompressionStream.Read(var Buffer; Count: Longint): Longint;
498 function TDecompressionStream.Read(var Buffer; Count: Longint): Longint;
507 FZRec.avail_in := FStrm.Read(FBuffer, sizeof(FBuffer));