Home
last modified time | relevance | path

Searched refs:rtor (Results 1 – 7 of 7) sorted by relevance

/openssl/ssl/quic/
H A Dquic_reactor.c40 rtor->poll_r = *r; in ossl_quic_reactor_set_poll_r()
42 rtor->can_poll_r in ossl_quic_reactor_set_poll_r()
43 = ossl_quic_reactor_can_support_poll_descriptor(rtor, &rtor->poll_r); in ossl_quic_reactor_set_poll_r()
51 rtor->poll_w = *w; in ossl_quic_reactor_set_poll_w()
53 rtor->can_poll_w in ossl_quic_reactor_set_poll_w()
54 = ossl_quic_reactor_can_support_poll_descriptor(rtor, &rtor->poll_w); in ossl_quic_reactor_set_poll_w()
59 return &rtor->poll_r; in ossl_quic_reactor_get_poll_r()
64 return &rtor->poll_w; in ossl_quic_reactor_get_poll_w()
75 return rtor->can_poll_r; in ossl_quic_reactor_can_poll_r()
80 return rtor->can_poll_w; in ossl_quic_reactor_can_poll_w()
[all …]
H A Dquic_thread_assist.c24 QUIC_REACTOR *rtor; in assist_thread_main() local
28 rtor = ossl_quic_channel_get_reactor(qta->ch); in assist_thread_main()
36 deadline = ossl_quic_reactor_get_tick_deadline(rtor); in assist_thread_main()
64 ossl_quic_reactor_tick(rtor, QUIC_REACTOR_TICK_FLAG_CHANNEL_ONLY); in assist_thread_main()
H A Dquic_engine.c58 ossl_quic_reactor_init(&qeng->rtor, qeng_tick, qeng, ossl_time_zero()); in qeng_init()
69 return &qeng->rtor; in ossl_quic_engine_get0_reactor()
H A Dquic_engine_local.h48 QUIC_REACTOR rtor; member
H A Dquic_port.c227 ossl_quic_reactor_set_poll_w(&port->engine->rtor, &d); in port_update_poll_desc()
229 ossl_quic_reactor_set_poll_r(&port->engine->rtor, &d); in port_update_poll_desc()
H A Dquic_impl.c62 QUIC_REACTOR *rtor; in block_until_pred() local
72 rtor = ossl_quic_channel_get_reactor(qc->ch); in block_until_pred()
73 return ossl_quic_reactor_block_until_pred(rtor, pred, pred_arg, flags, in block_until_pred()
859 QUIC_REACTOR *rtor = ossl_quic_channel_get_reactor(qc->ch); in qc_can_support_blocking_cached() local
861 return ossl_quic_reactor_can_poll_r(rtor) in qc_can_support_blocking_cached()
862 && ossl_quic_reactor_can_poll_w(rtor); in qc_can_support_blocking_cached()
/openssl/include/internal/
H A Dquic_reactor.h117 void ossl_quic_reactor_init(QUIC_REACTOR *rtor,
123 void ossl_quic_reactor_set_poll_r(QUIC_REACTOR *rtor,
126 void ossl_quic_reactor_set_poll_w(QUIC_REACTOR *rtor,
132 int ossl_quic_reactor_can_poll_r(const QUIC_REACTOR *rtor);
133 int ossl_quic_reactor_can_poll_w(const QUIC_REACTOR *rtor);
135 int ossl_quic_reactor_can_support_poll_descriptor(const QUIC_REACTOR *rtor,
138 int ossl_quic_reactor_net_read_desired(QUIC_REACTOR *rtor);
139 int ossl_quic_reactor_net_write_desired(QUIC_REACTOR *rtor);
141 OSSL_TIME ossl_quic_reactor_get_tick_deadline(QUIC_REACTOR *rtor);
153 int ossl_quic_reactor_tick(QUIC_REACTOR *rtor, uint32_t flags);
[all …]

Completed in 32 milliseconds