| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| quic_impl.c | 2090 uint64_t expect_id; member in struct:quic_wait_for_stream_args 2105 args->expect_id | QUIC_STREAM_DIR_BIDI); 2108 args->expect_id | QUIC_STREAM_DIR_UNI); 2120 uint64_t expect_id; local 2141 expect_id = qc->as_server 2146 expect_id | QUIC_STREAM_DIR_BIDI); 2149 expect_id | QUIC_STREAM_DIR_UNI); 2155 expect_id); 2173 wargs.expect_id = expect_id; [all...] |
| /src/crypto/external/apache2/openssl/dist/test/ |
| quic_multistream_test.c | 249 #define OP_C_NEW_STREAM_BIDI(stream_name, expect_id) \ 250 { OPK_C_NEW_STREAM, NULL, 0, NULL, #stream_name, (expect_id) }, 251 #define OP_C_NEW_STREAM_BIDI_EX(stream_name, expect_id, flags) \ 252 { OPK_C_NEW_STREAM, NULL, (flags), NULL, #stream_name, (expect_id) }, 253 #define OP_C_NEW_STREAM_UNI(stream_name, expect_id) \ 255 NULL, #stream_name, (expect_id) }, 256 #define OP_C_NEW_STREAM_UNI_EX(stream_name, expect_id, flags) \ 258 NULL, #stream_name, (expect_id) }, 259 #define OP_S_NEW_STREAM_BIDI(stream_name, expect_id) \ 260 { OPK_S_NEW_STREAM, NULL, 0, NULL, #stream_name, (expect_id) }, [all...] |