Home
last modified time | relevance | path

Searched refs:ctx (Results 4976 - 5000 of 12652) sorted by relevance

1...<<191192193194195196197198199200>>...507

/kernel/linux/linux-6.6/include/linux/
H A Dnetfs.h318 * @ctx: The netfs inode to initialise
324 static inline void netfs_inode_init(struct netfs_inode *ctx, in netfs_inode_init() argument
327 ctx->ops = ops; in netfs_inode_init()
328 ctx->remote_i_size = i_size_read(&ctx->inode); in netfs_inode_init()
330 ctx->cache = NULL; in netfs_inode_init()
336 * @ctx: The netfs inode being resized
341 static inline void netfs_resize_file(struct netfs_inode *ctx, loff_t new_i_size) in netfs_resize_file() argument
343 ctx->remote_i_size = new_i_size; in netfs_resize_file()
348 * @ctx
352 netfs_i_cookie(struct netfs_inode *ctx) netfs_i_cookie() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/netdevsim/
H A Dhealth.c44 struct nsim_dev_dummy_reporter_ctx *ctx = priv_ctx; in nsim_dev_dummy_reporter_recover() local
53 if (ctx) { in nsim_dev_dummy_reporter_recover()
55 health->recovered_break_msg = kstrdup(ctx->break_msg, in nsim_dev_dummy_reporter_recover()
159 struct nsim_dev_dummy_reporter_ctx *ctx = priv_ctx; in nsim_dev_dummy_reporter_dump() local
162 if (ctx) { in nsim_dev_dummy_reporter_dump()
164 ctx->break_msg); in nsim_dev_dummy_reporter_dump()
202 struct nsim_dev_dummy_reporter_ctx ctx; in nsim_dev_health_break_write() local
213 ctx.break_msg = break_msg; in nsim_dev_health_break_write()
214 err = devlink_health_report(health->dummy_reporter, break_msg, &ctx); in nsim_dev_health_break_write()
/kernel/linux/linux-6.6/net/bridge/netfilter/
H A Dnft_meta_bridge.c72 static int nft_meta_bridge_get_init(const struct nft_ctx *ctx, in nft_meta_bridge_get_init() argument
90 return nft_meta_get_init(ctx, expr, tb); in nft_meta_bridge_get_init()
94 return nft_parse_register_store(ctx, tb[NFTA_META_DREG], &priv->dreg, in nft_meta_bridge_get_init()
127 static int nft_meta_bridge_set_init(const struct nft_ctx *ctx, in nft_meta_bridge_set_init() argument
141 return nft_meta_set_init(ctx, expr, tb); in nft_meta_bridge_set_init()
170 static int nft_meta_bridge_set_validate(const struct nft_ctx *ctx, in nft_meta_bridge_set_validate() argument
182 return nft_meta_set_validate(ctx, expr, data); in nft_meta_bridge_set_validate()
185 return nft_chain_validate_hooks(ctx->chain, hooks); in nft_meta_bridge_set_validate()
200 nft_meta_bridge_select_ops(const struct nft_ctx *ctx, in nft_meta_bridge_select_ops() argument
/third_party/ffmpeg/libavfilter/
H A Davfilter.h254 int (*preinit)(AVFilterContext *ctx);
277 int (*init)(AVFilterContext *ctx);
290 int (*init_dict)(AVFilterContext *ctx, AVDictionary **options);
302 void (*uninit)(AVFilterContext *ctx);
392 int (*activate)(AVFilterContext *ctx);
782 * @param ctx uninitialized filter context to initialize
789 int avfilter_init_str(AVFilterContext *ctx, const char *args);
794 * @param ctx uninitialized filter context to initialize
811 int avfilter_init_dict(AVFilterContext *ctx, AVDictionary **options);
846 * @param ctx th
[all...]
/third_party/ffmpeg/libavformat/
H A Dsmush.c46 static int smush_read_header(AVFormatContext *ctx) in smush_read_header() argument
48 SMUSHContext *smush = ctx->priv_data; in smush_read_header()
49 AVIOContext *pb = ctx->pb; in smush_read_header()
138 av_log(ctx, AV_LOG_ERROR, "Wrong magic\n"); in smush_read_header()
142 vst = avformat_new_stream(ctx, 0); in smush_read_header()
170 ast = avformat_new_stream(ctx, 0); in smush_read_header()
188 static int smush_read_packet(AVFormatContext *ctx, AVPacket *pkt) in smush_read_packet() argument
190 SMUSHContext *smush = ctx->priv_data; in smush_read_packet()
191 AVIOContext *pb = ctx->pb; in smush_read_packet()
/third_party/libcoap/tests/
H A Dtest_session.c31 static coap_context_t *ctx; /* Holds the coap context for most tests */ variable
138 CU_ASSERT_PTR_NULL(ctx->sessions); in t_session5()
161 session = coap_new_client_session(ctx, &saddr, &laddr, COAP_PROTO_UDP); in t_session6()
163 CU_ASSERT_PTR_NOT_NULL(ctx->sessions); in t_session6()
182 ctx = coap_new_context(&addr); in t_session_tests_create()
184 if (ctx != NULL) { in t_session_tests_create()
186 session = coap_new_client_session(ctx, NULL, &addr, COAP_PROTO_UDP); in t_session_tests_create()
189 return (ctx == NULL) || (session == NULL); in t_session_tests_create()
194 coap_free_context(ctx); in t_session_tests_remove()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-hugeurl/
H A Dminimal-secure-streams.c147 struct lejp_ctx ctx; member
164 lws_httpbin_json_cb(struct lejp_ctx *ctx, char reason) in lws_httpbin_json_cb() argument
166 myss_t *m = (myss_t *)ctx->user; in lws_httpbin_json_cb()
167 const char *p = ctx->buf; in lws_httpbin_json_cb()
168 size_t l = ctx->npos; in lws_httpbin_json_cb()
173 if (ctx->path_match - 1) in lws_httpbin_json_cb()
207 lejp_construct(&m->ctx, lws_httpbin_json_cb, m, in myss_rx()
211 int pr = lejp_parse(&m->ctx, buf, (int)len); in myss_rx()
215 (unsigned int)m->ctx.line, pr, in myss_rx()
/third_party/mesa3d/src/intel/compiler/
H A Dtest_fs_copy_propagation.cpp38 void *ctx; member in copy_propagation_test
58 ctx = ralloc_context(NULL); in SetUp()
59 compiler = rzalloc(ctx, struct brw_compiler); in SetUp()
60 devinfo = rzalloc(ctx, struct intel_device_info); in SetUp()
63 prog_data = ralloc(ctx, struct brw_wm_prog_data); in SetUp()
65 nir_shader_create(ctx, MESA_SHADER_FRAGMENT, NULL, NULL); in SetUp()
67 v = new copy_propagation_fs_visitor(compiler, ctx, prog_data, shader); in SetUp()
78 ralloc_free(ctx); in TearDown()
79 ctx = NULL; in TearDown()
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_atom_image.c107 if (!st_finalize_texture(st->ctx, st->pipe, u->TexObj, 0) || in st_convert_image()
146 struct gl_image_unit *u = &st->ctx->ImageUnits[imgUnit]; in st_convert_image_from_unit()
148 if (!_mesa_is_image_unit_valid(st->ctx, u)) { in st_convert_image_from_unit()
187 st->ctx->_Shader->CurrentProgram[MESA_SHADER_VERTEX]; in st_bind_vs_images()
195 st->ctx->_Shader->CurrentProgram[MESA_SHADER_FRAGMENT]; in st_bind_fs_images()
203 st->ctx->_Shader->CurrentProgram[MESA_SHADER_GEOMETRY]; in st_bind_gs_images()
211 st->ctx->_Shader->CurrentProgram[MESA_SHADER_TESS_CTRL]; in st_bind_tcs_images()
219 st->ctx->_Shader->CurrentProgram[MESA_SHADER_TESS_EVAL]; in st_bind_tes_images()
227 st->ctx->_Shader->CurrentProgram[MESA_SHADER_COMPUTE]; in st_bind_cs_images()
/third_party/libdrm/tests/exynos/
H A Dexynos_fimg2d_event.c133 static int g2d_work(struct g2d_context *ctx, struct g2d_image *img, in g2d_work() argument
175 g2d_config_event(ctx, j); in g2d_work()
177 ret = g2d_solid_fill(ctx, img, x, y, w, h); in g2d_work()
180 g2d_exec(ctx); in g2d_work()
216 struct g2d_context *ctx; in main() local
284 ctx = g2d_init(fd); in main()
285 if (ctx == NULL) { in main()
313 ret = g2d_work(ctx, &img, njobs, iters); in main()
323 g2d_fini(ctx); in main()
/third_party/node/deps/openssl/openssl/crypto/pem/
H A Dpem_local.h44 OSSL_ENCODER_CTX *ctx = \
49 if (OSSL_ENCODER_CTX_get_num_encoders(ctx) == 0) { \
50 OSSL_ENCODER_CTX_free(ctx); \
65 if (OSSL_ENCODER_CTX_set_cipher(ctx, EVP_CIPHER_get0_name(enc), \
69 && !OSSL_ENCODER_CTX_set_passphrase(ctx, kstr, klen)) \
72 && !OSSL_ENCODER_CTX_set_pem_password_cb(ctx, \
78 OSSL_ENCODER_CTX_free(ctx); \
82 ret = OSSL_ENCODER_to_##outtype(ctx, out); \
83 OSSL_ENCODER_CTX_free(ctx); \
/third_party/node/deps/openssl/openssl/apps/
H A Dmac.c80 EVP_MAC_CTX *ctx = NULL; in mac_main() local
151 ctx = EVP_MAC_CTX_new(mac); in mac_main()
152 if (ctx == NULL) in mac_main()
163 if (!EVP_MAC_CTX_set_params(ctx, params)) { in mac_main()
181 if (!EVP_MAC_init(ctx, NULL, 0, NULL)) { in mac_main()
195 if (!EVP_MAC_update(ctx, buf, i)) { in mac_main()
201 if (!EVP_MAC_final(ctx, NULL, &len, 0)) { in mac_main()
210 if (!EVP_MAC_final(ctx, buf, &len, BUFSIZE)) { in mac_main()
234 EVP_MAC_CTX_free(ctx); in mac_main()
/third_party/openssl/test/
H A Dcrltest.c249 X509_STORE_CTX *ctx = X509_STORE_CTX_new(); in verify() local
255 if (!TEST_ptr(ctx) in verify()
264 || !TEST_true(X509_STORE_CTX_init(ctx, store, leaf, NULL))) in verify()
266 X509_STORE_CTX_set0_trusted_stack(ctx, roots); in verify()
267 X509_STORE_CTX_set0_crls(ctx, crls); in verify()
274 X509_STORE_CTX_set0_param(ctx, param); in verify()
278 status = X509_verify_cert(ctx) == 1 ? X509_V_OK in verify()
279 : X509_STORE_CTX_get_error(ctx); in verify()
284 X509_STORE_CTX_free(ctx); in verify()
/third_party/openssl/crypto/pem/
H A Dpem_local.h44 OSSL_ENCODER_CTX *ctx = \
49 if (OSSL_ENCODER_CTX_get_num_encoders(ctx) == 0) { \
50 OSSL_ENCODER_CTX_free(ctx); \
65 if (OSSL_ENCODER_CTX_set_cipher(ctx, EVP_CIPHER_get0_name(enc), \
69 && !OSSL_ENCODER_CTX_set_passphrase(ctx, kstr, klen)) \
72 && !OSSL_ENCODER_CTX_set_pem_password_cb(ctx, \
78 OSSL_ENCODER_CTX_free(ctx); \
82 ret = OSSL_ENCODER_to_##outtype(ctx, out); \
83 OSSL_ENCODER_CTX_free(ctx); \
/third_party/skia/src/effects/imagefilters/
H A DSkImageImageFilter.cpp103 sk_sp<SkSpecialImage> SkImageImageFilter::onFilterImage(const Context& ctx, in onFilterImage() argument
105 const SkRect dstBounds = ctx.ctm().mapRect(fDstRect); in onFilterImage()
114 const bool passthroughTransform = ctx.ctm().isScaleTranslate() && in onFilterImage()
115 ctx.ctm().getScaleX() > 0.f && in onFilterImage()
116 ctx.ctm().getScaleY() > 0.f; in onFilterImage()
136 return SkSpecialImage::MakeFromImage(ctx.getContext(), srcIBounds, fImage, in onFilterImage()
137 ctx.surfaceProps()); in onFilterImage()
140 sk_sp<SkSpecialSurface> surf(ctx.makeSurface(dstIBounds.size())); in onFilterImage()
148 canvas->concat(ctx.ctm()); in onFilterImage()
/third_party/openssl/apps/
H A Dmac.c80 EVP_MAC_CTX *ctx = NULL; in mac_main() local
151 ctx = EVP_MAC_CTX_new(mac); in mac_main()
152 if (ctx == NULL) in mac_main()
163 if (!EVP_MAC_CTX_set_params(ctx, params)) { in mac_main()
181 if (!EVP_MAC_init(ctx, NULL, 0, NULL)) { in mac_main()
195 if (!EVP_MAC_update(ctx, buf, i)) { in mac_main()
201 if (!EVP_MAC_final(ctx, NULL, &len, 0)) { in mac_main()
210 if (!EVP_MAC_final(ctx, buf, &len, BUFSIZE)) { in mac_main()
234 EVP_MAC_CTX_free(ctx); in mac_main()
/kernel/linux/linux-5.10/crypto/
H A Dstreebog_generic.c910 struct streebog_state *ctx = shash_desc_ctx(desc); in streebog_init() local
914 memset(ctx, 0, sizeof(struct streebog_state)); in streebog_init()
917 ctx->h.qword[i] = cpu_to_le64(0x0101010101010101ULL); in streebog_init()
922 static void streebog_pad(struct streebog_state *ctx) in streebog_pad() argument
924 if (ctx->fillsize >= STREEBOG_BLOCK_SIZE) in streebog_pad()
927 memset(ctx->buffer + ctx->fillsize, 0, in streebog_pad()
928 sizeof(ctx->buffer) - ctx->fillsize); in streebog_pad()
930 ctx in streebog_pad()
975 streebog_stage2(struct streebog_state *ctx, const u8 *data) streebog_stage2() argument
987 streebog_stage3(struct streebog_state *ctx) streebog_stage3() argument
1005 struct streebog_state *ctx = shash_desc_ctx(desc); streebog_update() local
1038 struct streebog_state *ctx = shash_desc_ctx(desc); streebog_final() local
[all...]
/kernel/linux/linux-6.6/crypto/
H A Dstreebog_generic.c910 struct streebog_state *ctx = shash_desc_ctx(desc); in streebog_init() local
914 memset(ctx, 0, sizeof(struct streebog_state)); in streebog_init()
917 ctx->h.qword[i] = cpu_to_le64(0x0101010101010101ULL); in streebog_init()
922 static void streebog_pad(struct streebog_state *ctx) in streebog_pad() argument
924 if (ctx->fillsize >= STREEBOG_BLOCK_SIZE) in streebog_pad()
927 memset(ctx->buffer + ctx->fillsize, 0, in streebog_pad()
928 sizeof(ctx->buffer) - ctx->fillsize); in streebog_pad()
930 ctx in streebog_pad()
975 streebog_stage2(struct streebog_state *ctx, const u8 *data) streebog_stage2() argument
987 streebog_stage3(struct streebog_state *ctx) streebog_stage3() argument
1005 struct streebog_state *ctx = shash_desc_ctx(desc); streebog_update() local
1038 struct streebog_state *ctx = shash_desc_ctx(desc); streebog_final() local
[all...]
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lecp/
H A Dmain.c4496 test_cb(struct lecp_ctx *ctx, char reason) in test_cb() argument
4498 struct priv *priv = (struct priv *)ctx->user; in test_cb()
4502 lwsl_notice("%s: %s, ctx->path %s\n", __func__, in test_cb()
4503 reason_names[(int)reason & 0x1f], ctx->path); in test_cb()
4506 // if (ctx->npos) in test_cb()
4507 // lwsl_hexdump_notice(ctx->buf, ctx->npos); in test_cb()
4523 (priv->cbt->seq[i].buf_len != ctx->npos || in test_cb()
4524 memcmp(priv->cbt->seq[i].buf, ctx->buf, ctx in test_cb()
4608 struct lecp_ctx ctx; main() local
4659 lws_lec_pctx_t ctx; main() local
[all...]
/kernel/linux/linux-5.10/net/mptcp/
H A Dsubflow.c467 * sock_put(ctx->conn). in mptcp_sock_destruct()
502 struct mptcp_subflow_context *ctx = mptcp_subflow_ctx(ssk); in subflow_drop_ctx() local
504 if (!ctx) in subflow_drop_ctx()
507 subflow_ulp_fallback(ssk, ctx); in subflow_drop_ctx()
508 if (ctx->conn) in subflow_drop_ctx()
509 sock_put(ctx->conn); in subflow_drop_ctx()
511 kfree_rcu(ctx, rcu); in subflow_drop_ctx()
586 struct mptcp_subflow_context *ctx = mptcp_subflow_ctx(child); in subflow_syn_recv_sock() local
590 /* we need to fallback on ctx allocation failure and on pre-reqs in subflow_syn_recv_sock()
594 if (!ctx || fallbac in subflow_syn_recv_sock()
1231 struct mptcp_subflow_context *ctx; subflow_create_ctx() local
1299 struct mptcp_subflow_context *ctx; subflow_ulp_init() local
1334 struct mptcp_subflow_context *ctx = mptcp_subflow_ctx(sk); subflow_ulp_release() local
[all...]
/kernel/linux/linux-6.6/include/net/netfilter/
H A Dnf_tables.h236 int nft_data_init(const struct nft_ctx *ctx, struct nft_data *data,
257 int nft_parse_register_store(const struct nft_ctx *ctx,
306 int (*fn)(const struct nft_ctx *ctx,
393 int nft_expr_inner_parse(const struct nft_ctx *ctx, const struct nlattr *nla,
396 void nft_expr_destroy(const struct nft_ctx *ctx, struct nft_expr *expr);
458 void (*walk)(const struct nft_ctx *ctx,
475 void (*destroy)(const struct nft_ctx *ctx,
633 void nf_tables_activate_set(const struct nft_ctx *ctx, struct nft_set *set);
634 void nf_tables_deactivate_set(const struct nft_ctx *ctx, struct nft_set *set,
637 int nf_tables_bind_set(const struct nft_ctx *ctx, struc
1555 struct nft_ctx ctx; global() member
[all...]
/third_party/ntfs-3g/libntfs-3g/
H A Dvolume.c259 ntfs_attr_search_ctx *ctx = NULL; in ntfs_mft_load() local
285 ctx = ntfs_attr_get_search_ctx(vol->mft_ni, NULL); in ntfs_mft_load()
286 if (!ctx) in ntfs_mft_load()
291 ctx)) { in ntfs_mft_load()
299 l = ntfs_get_attribute_value_length(ctx->attr); in ntfs_mft_load()
310 l = ntfs_get_attribute_value(vol, ctx->attr, vol->mft_ni->attr_list); in ntfs_mft_load()
338 ntfs_attr_reinit_search_ctx(ctx); in ntfs_mft_load()
343 ctx)) { in ntfs_mft_load()
346 a = ctx->attr; in ntfs_mft_load()
402 ntfs_attr_put_search_ctx(ctx); in ntfs_mft_load()
943 ntfs_attr_search_ctx *ctx = NULL; ntfs_device_mount() local
1742 ntfs_attr_search_ctx *ctx; ntfs_volume_write_flags() local
[all...]
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_debug.c133 struct si_context *ctx; member
144 si_shader_selector_reference(chunk->ctx, &chunk->sel, NULL); in si_log_chunk_shader_destroy()
152 struct si_screen *sscreen = chunk->ctx->screen; in si_log_chunk_shader_print()
161 static void si_dump_gfx_shader(struct si_context *ctx, const struct si_shader_ctx_state *state, in si_dump_gfx_shader() argument
170 chunk->ctx = ctx; in si_dump_gfx_shader()
172 si_shader_selector_reference(ctx, &chunk->sel, current->selector); in si_dump_gfx_shader()
176 static void si_dump_compute_shader(struct si_context *ctx, struct u_log_context *log) in si_dump_compute_shader() argument
178 const struct si_cs_shader_state *state = &ctx->cs_shader_state; in si_dump_compute_shader()
184 chunk->ctx in si_dump_compute_shader()
340 struct si_context *ctx; global() member
398 struct si_context *ctx = chunk->ctx; si_log_chunk_type_cs_print() local
440 si_log_cs(struct si_context *ctx, struct u_log_context *log, bool dump_bo_list) si_log_cs() argument
465 struct si_context *ctx = (struct si_context *)data; si_auto_log_cs() local
1018 si_dump_debug_state(struct pipe_context *ctx, FILE *f, unsigned flags) si_dump_debug_state() argument
[all...]
/third_party/node/deps/openssl/openssl/apps/lib/
H A Ds_cb.c45 int verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback() argument
50 err_cert = X509_STORE_CTX_get_current_cert(ctx); in verify_callback()
51 err = X509_STORE_CTX_get_error(ctx); in verify_callback()
52 depth = X509_STORE_CTX_get_error_depth(ctx); in verify_callback()
104 policies_print(ctx); in verify_callback()
108 policies_print(ctx); in verify_callback()
114 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file) in set_cert_stuff() argument
117 if (SSL_CTX_use_certificate_file(ctx, cert_file, in set_cert_stuff()
126 if (SSL_CTX_use_PrivateKey_file(ctx, key_file, SSL_FILETYPE_PEM) <= 0) { in set_cert_stuff()
142 if (!SSL_CTX_check_private_key(ctx)) { in set_cert_stuff()
151 set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key, STACK_OF(X509) *chain, int build_chain) set_cert_key_stuff() argument
963 ssl_ctx_set_excert(SSL_CTX *ctx, SSL_EXCERT *exc) ssl_ctx_set_excert() argument
1251 config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str, SSL_CTX *ctx) config_ctx() argument
1289 ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls, int crl_download) ssl_ctx_add_crls() argument
1300 ssl_load_stores(SSL_CTX *ctx, const char *vfyCApath, const char *vfyCAfile, const char *vfyCAstore, const char *chCApath, const char *chCAfile, const char *chCAstore, STACK_OF(X509_CRL) *crls, int crl_download) ssl_load_stores() argument
1378 security_callback_debug(const SSL *s, const SSL_CTX *ctx, int op, int bits, int nid, void *other, void *ex) security_callback_debug() argument
1494 ssl_ctx_security_debug(SSL_CTX *ctx, int verbose) ssl_ctx_security_debug() argument
1520 set_keylog_file(SSL_CTX *ctx, const char *keylog_file) set_keylog_file() argument
[all...]
/third_party/openssl/apps/lib/
H A Ds_cb.c45 int verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback() argument
50 err_cert = X509_STORE_CTX_get_current_cert(ctx); in verify_callback()
51 err = X509_STORE_CTX_get_error(ctx); in verify_callback()
52 depth = X509_STORE_CTX_get_error_depth(ctx); in verify_callback()
104 policies_print(ctx); in verify_callback()
108 policies_print(ctx); in verify_callback()
114 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file) in set_cert_stuff() argument
117 if (SSL_CTX_use_certificate_file(ctx, cert_file, in set_cert_stuff()
126 if (SSL_CTX_use_PrivateKey_file(ctx, key_file, SSL_FILETYPE_PEM) <= 0) { in set_cert_stuff()
142 if (!SSL_CTX_check_private_key(ctx)) { in set_cert_stuff()
151 set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key, STACK_OF(X509) *chain, int build_chain) set_cert_key_stuff() argument
963 ssl_ctx_set_excert(SSL_CTX *ctx, SSL_EXCERT *exc) ssl_ctx_set_excert() argument
1251 config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str, SSL_CTX *ctx) config_ctx() argument
1289 ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls, int crl_download) ssl_ctx_add_crls() argument
1300 ssl_load_stores(SSL_CTX *ctx, const char *vfyCApath, const char *vfyCAfile, const char *vfyCAstore, const char *chCApath, const char *chCAfile, const char *chCAstore, STACK_OF(X509_CRL) *crls, int crl_download) ssl_load_stores() argument
1378 security_callback_debug(const SSL *s, const SSL_CTX *ctx, int op, int bits, int nid, void *other, void *ex) security_callback_debug() argument
1494 ssl_ctx_security_debug(SSL_CTX *ctx, int verbose) ssl_ctx_security_debug() argument
1520 set_keylog_file(SSL_CTX *ctx, const char *keylog_file) set_keylog_file() argument
[all...]

Completed in 28 milliseconds

1...<<191192193194195196197198199200>>...507