Searched refs:stream (Results 1 - 6 of 6) sorted by relevance

/xnu-2782.1.97/libkern/zlib/
H A Dcompress.c60 z_stream stream; local
63 stream.next_in = (Bytef*)source;
64 stream.avail_in = (uInt)sourceLen;
67 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
69 stream.next_out = dest;
70 stream.avail_out = (uInt)*destLen;
71 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
73 stream.zalloc = (alloc_func)0;
74 stream.zfree = (free_func)0;
75 stream
[all...]
H A Duncompr.c63 z_stream stream; local
66 stream.next_in = (Bytef*)source;
67 stream.avail_in = (uInt)sourceLen;
69 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
71 stream.next_out = dest;
72 stream.avail_out = (uInt)*destLen;
73 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
75 stream.zalloc = (alloc_func)0;
76 stream.zfree = (free_func)0;
78 err = inflateInit(&stream);
[all...]
H A Dgzio.c84 z_stream stream; member in struct:gz_stream
85 int z_err; /* error code for last stream operation */
138 s->stream.zalloc = (alloc_func)0;
139 s->stream.zfree = (free_func)0;
140 s->stream.opaque = (voidpf)0;
141 s->stream.next_in = s->inbuf = Z_NULL;
142 s->stream.next_out = s->outbuf = Z_NULL;
143 s->stream.avail_in = s->stream.avail_out = 0;
182 err = deflateInit2(&(s->stream), leve
[all...]
/xnu-2782.1.97/tools/lldbmacros/
H A Dxnu.py88 stream = CommandOutput(result)
100 stream.setOptions(command_args, option_string)
101 if stream.verbose_level != 0:
102 config['verbosity'] += stream.verbose_level
103 with RedirectStdStreams(stdout=stream) :
105 obj(cmd_args=stream.target_cmd_args, cmd_options=stream.target_cmd_options)
107 obj(cmd_args=stream.target_cmd_args)
128 if stream.pluginRequired :
129 plugin = LoadXNUPlugin(stream
[all...]
/xnu-2782.1.97/osfmk/profiling/
H A Dprofile-internal.h260 FILE *stream; /* stdio stream to write to */ member in struct:profile_vars
261 FILE *diag_stream; /* stdio stream to write diagnostics to */
265 void *stream; /* pointer passed to fwrite_func */ member in struct:profile_vars
266 void *diag_stream; /* stdio stream to write diagnostics to */
/xnu-2782.1.97/bsd/kern/
H A Duipc_proto.c137 SYSCTL_NODE(_net_local, SOCK_STREAM, stream, CTLFLAG_RW|CTLFLAG_LOCKED,

Completed in 31 milliseconds