Searched refs:c_stream (Results 1 – 5 of 5) sorted by relevance
167 z_stream c_stream; /* compression stream */ in test_deflate() local171 c_stream.zalloc = zalloc; in test_deflate()172 c_stream.zfree = zfree; in test_deflate()173 c_stream.opaque = (voidpf)0; in test_deflate()175 err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION); in test_deflate()178 c_stream.next_in = (z_const unsigned char *)hello; in test_deflate()179 c_stream.next_out = compr; in test_deflate()181 while (c_stream.total_in != len && c_stream.total_out < comprLen) { in test_deflate()182 c_stream.avail_in = c_stream.avail_out = 1; /* force small buffers */ in test_deflate()183 err = deflate(&c_stream, Z_NO_FLUSH); in test_deflate()[all …]
229 z_stream c_stream; /* compression stream */ local233 c_stream.zalloc = zalloc;234 c_stream.zfree = zfree;235 c_stream.opaque = (voidpf)0;237 err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);240 c_stream.next_in = (z_const unsigned char *)hello;241 c_stream.next_out = compr;243 while (c_stream.total_in != len && c_stream.total_out < comprLen) {244 c_stream.avail_in = c_stream.avail_out = 1; /* force small buffers */245 err = deflate(&c_stream, Z_NO_FLUSH);[all …]
221 z_stream c_stream; /* compression stream */ local225 c_stream.zalloc = zalloc;226 c_stream.zfree = zfree;227 c_stream.opaque = (voidpf)0;229 err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);232 c_stream.next_in = (z_const unsigned char *)hello;233 c_stream.next_out = compr;235 while (c_stream.total_in != len && c_stream.total_out < comprLen) {236 c_stream.avail_in = c_stream.avail_out = 1; /* force small buffers */237 err = deflate(&c_stream, Z_NO_FLUSH);[all …]
88 z_stream c_stream; in block_deflate() local94 c_stream.zalloc = myalloc; in block_deflate()95 c_stream.zfree = myfree; in block_deflate()96 c_stream.opaque = NULL; in block_deflate()98 err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION); in block_deflate()101 c_stream.next_in = uncompr; in block_deflate()102 c_stream.next_out = compr; in block_deflate()103 c_stream.avail_in = len; in block_deflate()104 c_stream.avail_out = len*2u +512u; in block_deflate()106 while (c_stream.total_in != len && c_stream.total_out < (len*2u + 512u)) { in block_deflate()[all …]
55 SSL *c_stream; member479 SSL_free(info->c_stream); in cleanup_stream()923 SSL *c_stream) in helper_local_set_c_stream() argument930 info->c_stream = c_stream; in helper_local_set_c_stream()947 return info->c_stream; in helper_local_get_c_stream()963 info->c_stream = NULL; in helper_set_s_stream()1477 SSL *c_stream; in run_script_worker() local1485 if (!TEST_ptr(c_stream = ossl_quic_detach_stream(h->c_conn))) in run_script_worker()1488 if (!TEST_true(helper_local_set_c_stream(hl, op->stream_name, c_stream))) in run_script_worker()1511 SSL *c_stream; in run_script_worker() local[all …]