OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Stream
(Results
1 - 7
of
7
) sorted by relevancy
/src/common/dist/zlib/contrib/ada/
zlib-streams.adb
19
procedure Close (
Stream
: in out Stream_Type) is
23
if
Stream
.Mode = Out_Stream or
Stream
.Mode = Duplex then
26
Flush (
Stream
, Finish);
28
Close (
Stream
.Writer);
31
if
Stream
.Mode = In_Stream or
Stream
.Mode = Duplex then
32
Close (
Stream
.Reader);
33
Free (
Stream
.Buffer);
42
(
Stream
: out Stream_Type
[
all
...]
zlib-streams.ads
21
(
Stream
: in out Stream_Type;
26
(
Stream
: in out Stream_Type;
30
(
Stream
: in out Stream_Type;
32
-- Flush the written data to the back
stream
,
33
-- all data placed to the compressor is flushing to the Back
stream
.
37
function Read_Total_In (
Stream
: in Stream_Type) return Count;
39
-- Return total number of bytes read from back
stream
so far.
41
function Read_Total_Out (
Stream
: in Stream_Type) return Count;
45
function Write_Total_In (
Stream
: in Stream_Type) return Count;
49
function Write_Total_Out (
Stream
: in Stream_Type) return Count
[
all
...]
test.adb
82
-- Copying data from one
stream
to another. It is for test
stream
119
Compare_Streams (
Stream
(Left_File).all,
Stream
(Right_File).all);
341
-- Test
stream
interface.
343
-- Compress to the back
stream
.
351
(
Stream
=> File_Z,
354
(
Stream
(File_Back)),
361
(Source =>
Stream
(File_In).all,
364
-- Flushing internal buffers to the back
stream
[
all
...]
zlib.adb
85
procedure Raise_Error (
Stream
: in Z_Stream);
91
procedure Check_Error (
Stream
: in Z_Stream; Code : in Thin.Int);
121
procedure Check_Error (
Stream
: in Z_Stream; Code : in Thin.Int) is
127
& ": " & Last_Error_Message (
Stream
));
387
procedure Raise_Error (
Stream
: in Z_Stream) is
389
Raise_Error (Last_Error_Message (
Stream
));
562
-- Add data to
stream
from the Filter.Offset till necessary,
/src/common/dist/zlib/os400/
zlib.inc
11
* the package version string and the
stream
control structure.
81
D z_streamp S *
Stream
struct ptr
84
D z_off_t S 10i 0
Stream
offsets
85
D z_off64_t S 20i 0
Stream
offsets
91
* The GZIP encode/decode
stream
support structure.
302
D strm like(z_stream) Compression
stream
305
D stream_size 10i 0 value
Stream
struct. size
308
D strm like(z_stream) Compression
stream
312
D strm like(z_stream) Compression
stream
315
D strm like(z_stream) Expansion
stream
[
all
...]
/src/lib/libc/isc/
eventlib_p.h
169
enum { Accept, File,
Stream
, Timer, Wait, Free, Null } type;
173
struct { evStream *this; }
stream
;
member in union:evEvent_p::__anon6ab7f5a8040a
/src/common/dist/zlib/contrib/dotzlib/DotZLib/
GZipStream.cs
15
/// Implements a compressed <see cref="
Stream
"/>, in GZip (.gz) format.
17
public class GZipStream :
Stream
, IDisposable
78
/// Returns true of this
stream
can be read from, false otherwise
143
/// Attempts to read a number of bytes from the
stream
.
152
/// <exception cref="NotSupportedException">If this
stream
is not readable.</exception>
153
/// <exception cref="ObjectDisposedException">If this
stream
has been disposed.</exception>
178
/// Attempts to read a single byte from the
stream
.
189
/// Writes a number of bytes to the
stream
197
/// <exception cref="NotSupportedException">If this
stream
is not writeable.</exception>
198
/// <exception cref="ObjectDisposedException">If this
stream
has been disposed.</exception>
[
all
...]
Completed in 16 milliseconds
Indexes created Tue Oct 14 06:10:07 GMT 2025