Lines Matching refs:QUIC_ENGINE
20 static int qeng_init(QUIC_ENGINE *qeng);
21 static void qeng_cleanup(QUIC_ENGINE *qeng);
26 QUIC_ENGINE *ossl_quic_engine_new(const QUIC_ENGINE_ARGS *args) in ossl_quic_engine_new()
28 QUIC_ENGINE *qeng; in ossl_quic_engine_new()
30 if ((qeng = OPENSSL_zalloc(sizeof(QUIC_ENGINE))) == NULL) in ossl_quic_engine_new()
47 void ossl_quic_engine_free(QUIC_ENGINE *qeng) in ossl_quic_engine_free()
56 static int qeng_init(QUIC_ENGINE *qeng) in qeng_init()
62 static void qeng_cleanup(QUIC_ENGINE *qeng) in qeng_cleanup()
67 QUIC_REACTOR *ossl_quic_engine_get0_reactor(QUIC_ENGINE *qeng) in ossl_quic_engine_get0_reactor()
72 CRYPTO_MUTEX *ossl_quic_engine_get0_mutex(QUIC_ENGINE *qeng) in ossl_quic_engine_get0_mutex()
77 OSSL_TIME ossl_quic_engine_get_time(QUIC_ENGINE *qeng) in ossl_quic_engine_get_time()
85 void ossl_quic_engine_set_inhibit_tick(QUIC_ENGINE *qeng, int inhibit) in ossl_quic_engine_set_inhibit_tick()
95 QUIC_PORT *ossl_quic_engine_create_port(QUIC_ENGINE *qeng, in ossl_quic_engine_create_port()
123 QUIC_ENGINE *qeng = arg; in qeng_tick()