Searched refs:revents (Results 1 – 8 of 8) sorted by relevance
/openssl/ssl/rio/ |
H A D | poll_immediate.c | 23 ITEM_N(items, stride, j).revents = 0; \ 31 ITEM_N(items, stride, i).revents = SSL_POLL_EVENT_F; \ 47 uint64_t revents; in SSL_poll() local 73 revents = 0; in SSL_poll() 86 if (!ossl_quic_conn_poll_events(ssl, events, do_tick, &revents)) in SSL_poll() 90 if (revents != 0) in SSL_poll() 115 item->revents = revents; in SSL_poll()
|
/openssl/doc/man3/ |
H A D | SSL_poll.pod | 62 uint64_t events, revents; 99 B<SSL_POLL_ITEM> array entry is ignored and I<revents> will be set to 0 on 109 =item I<revents> 115 I<revents> need not be a subset of the events specified in I<events>, as some 147 output the number of entries in the array which have nonzero I<revents> fields 166 given event will never be reported in I<revents>. 177 Some event types are non-maskable and may be reported in I<revents> regardless 310 the I<revents> fields of all items in the input array upon returning, even if it 314 the array with nonzero I<revents> fields, even if the SSL_poll() call returns 361 raised in I<revents>. The entries added to the ERR stack (of which there is
|
/openssl/demos/guide/ |
H A D | quic-hq-interop.c | 631 poll_list[poll_idx].revents = 0; in build_request_set() 943 if (poll_list[poll_idx].revents == SSL_POLL_EVENT_R) { in main() 950 poll_list[poll_idx].revents = 0; in main()
|
/openssl/doc/designs/ddd/ |
H A D | ddd-05-mem-nonblocking.c | 317 if (pfd.revents & POLLIN) { 339 if (pfd.revents & POLLOUT) {
|
/openssl/ssl/quic/ |
H A D | quic_impl.c | 4126 uint64_t revents = 0; in ossl_quic_conn_poll_events() local 4136 revents |= SSL_POLL_EVENT_W; in ossl_quic_conn_poll_events() 4148 revents |= SSL_POLL_EVENT_R; in ossl_quic_conn_poll_events() 4152 revents |= SSL_POLL_EVENT_ER; in ossl_quic_conn_poll_events() 4156 revents |= SSL_POLL_EVENT_W; in ossl_quic_conn_poll_events() 4160 revents |= SSL_POLL_EVENT_EW; in ossl_quic_conn_poll_events() 4166 revents |= SSL_POLL_EVENT_EC; in ossl_quic_conn_poll_events() 4170 revents |= SSL_POLL_EVENT_ECD; in ossl_quic_conn_poll_events() 4174 revents |= SSL_POLL_EVENT_ISB; in ossl_quic_conn_poll_events() 4178 revents |= SSL_POLL_EVENT_ISU; in ossl_quic_conn_poll_events() [all …]
|
/openssl/include/internal/ |
H A D | quic_ssl.h | 147 uint64_t *revents);
|
/openssl/test/ |
H A D | quic_multistream_test.c | 5510 item->revents = UINT64_MAX; in script_85_poll() 5515 item->revents = UINT64_MAX; in script_85_poll() 5520 item->revents = UINT64_MAX; in script_85_poll() 5525 item->revents = UINT64_MAX; in script_85_poll() 5530 item->revents = UINT64_MAX; in script_85_poll() 5577 if (!TEST_uint64_t_eq(items[i].revents, expected_revents[i])) { in script_85_poll()
|
/openssl/include/openssl/ |
H A D | ssl.h.in | 2477 uint64_t events, revents; member
|
Completed in 48 milliseconds