Home
last modified time | relevance | path

Searched refs:http_cb (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/bsd/libevent/dist/
H A Dhttp.c3737 struct evhttp_cb *http_cb; in evhttp_free() local
3757 while ((http_cb = TAILQ_FIRST(&http->callbacks)) != NULL) { in evhttp_free()
3758 TAILQ_REMOVE(&http->callbacks, http_cb, next); in evhttp_free()
3759 mm_free(http_cb->what); in evhttp_free()
3760 mm_free(http_cb); in evhttp_free()
3921 struct evhttp_cb *http_cb; in evhttp_set_cb() local
3923 TAILQ_FOREACH(http_cb, &http->callbacks, next) { in evhttp_set_cb()
3924 if (strcmp(http_cb->what, uri) == 0) in evhttp_set_cb()
3928 if ((http_cb = mm_calloc(1, sizeof(struct evhttp_cb))) == NULL) { in evhttp_set_cb()
3933 http_cb->what = mm_strdup(uri); in evhttp_set_cb()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/cmp/
H A Dcmp_http.c83 ctx->http_cb, OSSL_CMP_CTX_get_http_cb_arg(ctx), in OSSL_CMP_MSG_http_perform()
H A Dcmp_local.h54 OSSL_HTTP_bio_cb_t http_cb; member
H A Dcmp_ctx.c914 ctx->http_cb = cb; in DEFINE_OSSL_CMP_CTX_set1()
/netbsd-src/crypto/external/bsd/openssl/dist/test/
H A Dcmp_ctx_test.c739 DEFINE_SET_CB_TEST(http_cb) in DEFINE_SET_CB_TEST()