HomeSort by: relevance | last modified time | path
    Searched refs:qeng (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_engine.c 20 static int qeng_init(QUIC_ENGINE *qeng, uint64_t reactor_flags);
21 static void qeng_cleanup(QUIC_ENGINE *qeng);
28 QUIC_ENGINE *qeng; local
30 if ((qeng = OPENSSL_zalloc(sizeof(QUIC_ENGINE))) == NULL)
33 qeng->libctx = args->libctx;
34 qeng->propq = args->propq;
35 qeng->mutex = args->mutex;
37 if (!qeng_init(qeng, args->reactor_flags)) {
38 OPENSSL_free(qeng);
42 return qeng;
176 QUIC_ENGINE *qeng = arg; local
    [all...]
quic_impl.c 552 QUIC_ENGINE *qeng; local
555 qeng = ossl_quic_obj_get0_engine(ctx->obj);
556 assert(qeng != NULL);
562 ossl_quic_engine_set_inhibit_tick(qeng, 0);
564 rtor = ossl_quic_engine_get0_reactor(qeng);
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_engine.h 62 void ossl_quic_engine_free(QUIC_ENGINE *qeng);
67 QUIC_PORT *ossl_quic_engine_create_port(QUIC_ENGINE *qeng,
71 CRYPTO_MUTEX *ossl_quic_engine_get0_mutex(QUIC_ENGINE *qeng);
74 OSSL_TIME ossl_quic_engine_get_time(QUIC_ENGINE *qeng);
81 OSSL_TIME ossl_quic_engine_make_real_time(QUIC_ENGINE *qeng, OSSL_TIME tm);
84 void ossl_quic_engine_set_time_cb(QUIC_ENGINE *qeng,
89 void ossl_quic_engine_set_inhibit_tick(QUIC_ENGINE *qeng, int inhibit);
92 QUIC_REACTOR *ossl_quic_engine_get0_reactor(QUIC_ENGINE *qeng);
94 OSSL_LIB_CTX *ossl_quic_engine_get0_libctx(QUIC_ENGINE *qeng);
95 const char *ossl_quic_engine_get0_propq(QUIC_ENGINE *qeng);
    [all...]

Completed in 27 milliseconds