HomeSort by: relevance | last modified time | path
    Searched defs:qeng (Results 1 - 2 of 2) 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);

Completed in 64 milliseconds