Home
last modified time | relevance | path

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

/third_party/node/deps/openssl/openssl/include/openssl/
H A Dcomp.h30 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth);
31 const COMP_METHOD *COMP_CTX_get_method(const COMP_CTX *ctx);
32 int COMP_CTX_get_type(const COMP_CTX* comp);
35 void COMP_CTX_free(COMP_CTX *ctx);
37 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
39 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
H A Dtypes.h187 typedef struct comp_ctx_st COMP_CTX; typedef
/third_party/openssl/include/openssl/
H A Dcomp.h30 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth);
31 const COMP_METHOD *COMP_CTX_get_method(const COMP_CTX *ctx);
32 int COMP_CTX_get_type(const COMP_CTX* comp);
35 void COMP_CTX_free(COMP_CTX *ctx);
37 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
39 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
H A Dtypes.h187 typedef struct comp_ctx_st COMP_CTX; typedef
/third_party/openssl/ohos_lite/include/openssl/
H A Dcomp.h24 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth);
25 const COMP_METHOD *COMP_CTX_get_method(const COMP_CTX *ctx);
26 int COMP_CTX_get_type(const COMP_CTX* comp);
29 void COMP_CTX_free(COMP_CTX *ctx);
31 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
33 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
H A Dossl_typ.h151 typedef struct comp_ctx_st COMP_CTX; typedef
/third_party/node/deps/openssl/openssl/crypto/comp/
H A Dcomp_lib.c18 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth) in COMP_CTX_new()
20 COMP_CTX *ret; in COMP_CTX_new()
34 const COMP_METHOD *COMP_CTX_get_method(const COMP_CTX *ctx) in COMP_CTX_get_method()
49 void COMP_CTX_free(COMP_CTX *ctx) in COMP_CTX_free()
59 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen, in COMP_compress_block()
74 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen, in COMP_expand_block()
90 int COMP_CTX_get_type(const COMP_CTX* comp) in COMP_CTX_get_type()
H A Dcomp_local.h13 int (*init) (COMP_CTX *ctx);
14 void (*finish) (COMP_CTX *ctx);
15 int (*compress) (COMP_CTX *ctx,
18 int (*expand) (COMP_CTX *ctx,
H A Dc_zlib.c38 static int zlib_stateful_init(COMP_CTX *ctx);
39 static void zlib_stateful_finish(COMP_CTX *ctx);
40 static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
43 static int zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out,
123 static int zlib_stateful_init(COMP_CTX *ctx) in zlib_stateful_init()
157 static void zlib_stateful_finish(COMP_CTX *ctx) in zlib_stateful_finish()
165 static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out, in zlib_stateful_compress_block()
186 static int zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out, in zlib_stateful_expand_block()
/third_party/openssl/crypto/comp/
H A Dcomp_lib.c18 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth) in COMP_CTX_new()
20 COMP_CTX *ret; in COMP_CTX_new()
34 const COMP_METHOD *COMP_CTX_get_method(const COMP_CTX *ctx) in COMP_CTX_get_method()
49 void COMP_CTX_free(COMP_CTX *ctx) in COMP_CTX_free()
59 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen, in COMP_compress_block()
74 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen, in COMP_expand_block()
90 int COMP_CTX_get_type(const COMP_CTX* comp) in COMP_CTX_get_type()
H A Dcomp_local.h13 int (*init) (COMP_CTX *ctx);
14 void (*finish) (COMP_CTX *ctx);
15 int (*compress) (COMP_CTX *ctx,
18 int (*expand) (COMP_CTX *ctx,
H A Dc_zlib.c38 static int zlib_stateful_init(COMP_CTX *ctx);
39 static void zlib_stateful_finish(COMP_CTX *ctx);
40 static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
43 static int zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out,
123 static int zlib_stateful_init(COMP_CTX *ctx) in zlib_stateful_init()
157 static void zlib_stateful_finish(COMP_CTX *ctx) in zlib_stateful_finish()
165 static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out, in zlib_stateful_compress_block()
186 static int zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out, in zlib_stateful_expand_block()
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
H A Dtypes.rs1036 pub enum COMP_CTX {} enum
1046 init: Option<unsafe extern "C" fn(*mut COMP_CTX) -> c_int>,
1047 finish: Option<unsafe extern "C" fn(*mut COMP_CTX)>,
1050 *mut COMP_CTX,
1059 *mut COMP_CTX,
/third_party/node/deps/openssl/openssl/ssl/
H A Dssl_local.h1505 COMP_CTX *compress; /* compression */
1506 COMP_CTX *expand; /* uncompress */
1912 COMP_CTX *compress; /* compression */
/third_party/python/Lib/lib2to3/tests/data/
H A Dinfinite_recursion.py449 COMP_CTX = comp_ctx_st variable
1373 ('expand', POINTER(COMP_CTX)),
1376 ('compress', POINTER(COMP_CTX)),
2508 'pem_ctx_st', 'uint8_t', 'fpos_t', 'X509', 'COMP_CTX',
/third_party/openssl/ssl/
H A Dssl_local.h1476 COMP_CTX *compress; /* compression */
1477 COMP_CTX *expand; /* uncompress */
1856 COMP_CTX *compress; /* compression */

Completed in 22 milliseconds