OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:QUIC_ENGINE
(Results
1 - 14
of
14
) sorted by relevancy
/src/crypto/external/apache2/openssl/dist/include/internal/
quic_engine.h
24
* A QUIC Engine (
QUIC_ENGINE
) represents an event processing domain for the
29
* to a
QUIC_ENGINE
.
60
QUIC_ENGINE
*ossl_quic_engine_new(const QUIC_ENGINE_ARGS *args);
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)
[
all
...]
quic_predef.h
41
typedef struct quic_engine_st
QUIC_ENGINE
;
quic_port.h
39
* All QUIC_PORT instances are created by a
QUIC_ENGINE
.
43
QUIC_ENGINE
*engine;
72
/* Only
QUIC_ENGINE
should use this function. */
126
QUIC_ENGINE
*ossl_quic_port_get0_engine(QUIC_PORT *port);
152
/* For use by
QUIC_ENGINE
. You should not need to call this directly. */
quic_channel.h
347
QUIC_ENGINE
*ossl_quic_channel_get0_engine(QUIC_CHANNEL *ch);
/src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_engine.c
10
#include "internal/
quic_engine
.h"
20
static int qeng_init(
QUIC_ENGINE
*qeng, uint64_t reactor_flags);
21
static void qeng_cleanup(
QUIC_ENGINE
*qeng);
26
QUIC_ENGINE
*ossl_quic_engine_new(const QUIC_ENGINE_ARGS *args)
28
QUIC_ENGINE
*qeng;
30
if ((qeng = OPENSSL_zalloc(sizeof(
QUIC_ENGINE
))) == NULL)
45
void ossl_quic_engine_free(
QUIC_ENGINE
*qeng)
54
static int qeng_init(
QUIC_ENGINE
*qeng, uint64_t reactor_flags)
61
static void qeng_cleanup(
QUIC_ENGINE
*qeng)
67
QUIC_REACTOR *ossl_quic_engine_get0_reactor(
QUIC_ENGINE
*qeng
[
all
...]
quic_local.h
130
QUIC_ENGINE
*engine;
244
QUIC_ENGINE
*engine;
251
* The mutex used to synchronise access to the
QUIC_ENGINE
. We own this but
263
* for QDSO objects, wrapping the QUIC-native
QUIC_ENGINE
object.
270
QUIC_ENGINE
*engine;
274
* The mutex used to synchronise access to the
QUIC_ENGINE
. We own this but
quic_obj_local.h
15
#include "internal/
quic_engine
.h"
44
* QUIC_DOMAIN (QDSO) ->
QUIC_ENGINE
*E
51
* *: Not currently modelled in the APL, though
QUIC_ENGINE
exists internally.
86
* Points to the
QUIC_ENGINE
instance. Always equals
92
QUIC_ENGINE
*engine;
155
QUIC_ENGINE
*engine,
188
static ossl_inline ossl_unused
QUIC_ENGINE
*
215
static ossl_inline ossl_unused
QUIC_ENGINE
*
quic_port_local.h
46
QUIC_ENGINE
*engine;
49
*
QUIC_ENGINE
keeps the ports which belong to it on a list for bookkeeping
109
/* Are we on the
QUIC_ENGINE
linked list of ports? */
quic_thread_assist.c
25
QUIC_ENGINE
*eng = ossl_quic_channel_get0_engine(qta->ch);
quic_obj.c
20
QUIC_ENGINE
*engine,
quic_tserver.c
14
#include "internal/
quic_engine
.h"
33
QUIC_ENGINE
*engine;
quic_port.c
232
QUIC_ENGINE
*ossl_quic_port_get0_engine(QUIC_PORT *port)
quic_channel.c
675
QUIC_ENGINE
*ossl_quic_channel_get0_engine(QUIC_CHANNEL *ch)
quic_impl.c
20
#include "internal/
quic_engine
.h"
552
QUIC_ENGINE
*qeng;
Completed in 55 milliseconds
Indexes created Thu Jun 25 00:25:11 UTC 2026