Searched refs:COMP_CTX (Results 1 – 9 of 9) sorted by relevance
/external/openssl/crypto/comp/ |
D | comp.h | 11 typedef struct comp_ctx_st COMP_CTX; typedef 17 int (*init)(COMP_CTX *ctx); 18 void (*finish)(COMP_CTX *ctx); 19 int (*compress)(COMP_CTX *ctx, 22 int (*expand)(COMP_CTX *ctx, 42 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth); 43 void COMP_CTX_free(COMP_CTX *ctx); 44 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen, 46 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
|
D | comp_lib.c | 7 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth) in COMP_CTX_new() 9 COMP_CTX *ret; in COMP_CTX_new() 11 if ((ret=(COMP_CTX *)OPENSSL_malloc(sizeof(COMP_CTX))) == NULL) in COMP_CTX_new() 16 memset(ret,0,sizeof(COMP_CTX)); in COMP_CTX_new() 26 void COMP_CTX_free(COMP_CTX *ctx) in COMP_CTX_free() 37 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen, in COMP_compress_block() 55 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen, in COMP_expand_block()
|
D | c_rle.c | 7 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out, 9 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out, 28 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out, in rle_compress_block() 44 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out, in rle_expand_block()
|
D | c_zlib.c | 27 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, 31 static int zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out, 53 static int zlib_compress_block(COMP_CTX *ctx, unsigned char *out, 55 static int zlib_expand_block(COMP_CTX *ctx, unsigned char *out, 139 static int zlib_stateful_init(COMP_CTX *ctx) in zlib_stateful_init() 180 static void zlib_stateful_finish(COMP_CTX *ctx) in zlib_stateful_finish() 191 static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out, in zlib_stateful_compress_block() 218 static int zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out, in zlib_stateful_expand_block() [all …]
|
/external/openssl/include/openssl/ |
D | comp.h | 11 typedef struct comp_ctx_st COMP_CTX; typedef 17 int (*init)(COMP_CTX *ctx); 18 void (*finish)(COMP_CTX *ctx); 19 int (*compress)(COMP_CTX *ctx, 22 int (*expand)(COMP_CTX *ctx, 42 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth); 43 void COMP_CTX_free(COMP_CTX *ctx); 44 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen, 46 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
|
D | dtls1.h | 123 COMP_CTX *compress; /* compression */
|
D | ssl.h | 1066 COMP_CTX *expand; /* uncompress */ 1074 COMP_CTX *compress; /* compression */
|
/external/openssl/ssl/ |
D | dtls1.h | 123 COMP_CTX *compress; /* compression */
|
D | ssl.h | 1066 COMP_CTX *expand; /* uncompress */ 1074 COMP_CTX *compress; /* compression */
|