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

/freebsd-9.3-release/crypto/openssl/crypto/comp/
H A Dcomp.h11 typedef struct comp_ctx_st COMP_CTX; typedef in typeref:struct:comp_ctx_st
16 int (*init) (COMP_CTX *ctx);
17 void (*finish) (COMP_CTX *ctx);
18 int (*compress) (COMP_CTX *ctx,
21 int (*expand) (COMP_CTX *ctx,
40 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth);
41 void COMP_CTX_free(COMP_CTX *ctx);
42 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
44 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
H A Dcomp_lib.c7 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth)
9 COMP_CTX *ret;
11 if ((ret = (COMP_CTX *)OPENSSL_malloc(sizeof(COMP_CTX))) == NULL) {
15 memset(ret, 0, sizeof(COMP_CTX));
24 void COMP_CTX_free(COMP_CTX *ctx)
35 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
51 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
H A Dc_rle.c7 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
10 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
30 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
46 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
H A Dc_zlib.c27 static int zlib_stateful_init(COMP_CTX *ctx);
28 static void zlib_stateful_finish(COMP_CTX *ctx);
29 static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
32 static int zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out,
53 static int zlib_compress_block(COMP_CTX *ctx, unsigned char *out,
56 static int zlib_expand_block(COMP_CTX *ctx, unsigned char *out,
141 static int zlib_stateful_init(COMP_CTX *ctx)
182 static void zlib_stateful_finish(COMP_CTX *ctx)
193 static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
221 static int zlib_stateful_expand_block(COMP_CTX *ct
[all...]
/freebsd-9.3-release/crypto/openssl/ssl/
H A Ddtls1.h120 COMP_CTX *compress; /* compression */
H A Dssl.h1030 COMP_CTX *expand; /* uncompress */
1037 COMP_CTX *compress; /* compression */

Completed in 103 milliseconds