Searched refs:flate (Results 1 – 4 of 4) sorted by relevance
/external/grpc-grpc/src/core/lib/compression/ |
D | stream_compression_gzip.cc | 34 int (*flate)(z_stream* zs, int flush); member 43 GPR_ASSERT(!(ctx->flate == inflate && (flush == Z_FINISH))); in gzip_flate() 59 r = ctx->flate(&ctx->zs, Z_NO_FLUSH); in gzip_flate() 65 } else if (r == Z_STREAM_END && ctx->flate == inflate) { in gzip_flate() 78 r = ctx->flate(&ctx->zs, flush); in gzip_flate() 148 GPR_ASSERT(gzip_ctx->flate == deflate); in grpc_stream_compress_gzip() 178 GPR_ASSERT(gzip_ctx->flate == inflate); in grpc_stream_decompress_gzip() 197 gzip_ctx->flate = inflate; in grpc_stream_compression_context_create_gzip() 201 gzip_ctx->flate = deflate; in grpc_stream_compression_context_create_gzip() 219 if (gzip_ctx->flate == inflate) { in grpc_stream_compression_context_destroy_gzip()
|
D | message_compress.cc | 36 int (*flate)(z_stream* zs, int flush)) { in zlib_body() 60 r = flate(zs, flush); in zlib_body()
|
/external/syzkaller/pkg/rpctype/ |
D | rpc.go | 114 w *flate.Writer 119 w, err := flate.NewWriter(conn, 9) 124 r: flate.NewReader(conn),
|
/external/syzkaller/pkg/db/ |
D | db.go | 165 fw, err := flate.NewWriter(w, flate.BestCompression) 258 fr := flate.NewReader(&io.LimitedReader{R: r, N: int64(valLen)})
|