Symbol: stream_name
crypto/openssl/test/quic_multistream_test.c
1106
if (op->stream_name != NULL) {
crypto/openssl/test/quic_multistream_test.c
1107
c_tgt = helper_local_get_c_stream(hl, op->stream_name);
crypto/openssl/test/quic_multistream_test.c
1109
s_stream_id = helper_get_s_stream(h, op->stream_name);
crypto/openssl/test/quic_multistream_test.c
136
const char *stream_name;
crypto/openssl/test/quic_multistream_test.c
1453
if (!TEST_ptr(op->stream_name))
crypto/openssl/test/quic_multistream_test.c
1459
if (!TEST_true(helper_local_set_c_stream(hl, op->stream_name, c_stream)))
crypto/openssl/test/quic_multistream_test.c
1467
if (!TEST_ptr(op->stream_name))
crypto/openssl/test/quic_multistream_test.c
1473
if (!TEST_true(helper_local_set_c_stream(hl, op->stream_name, NULL)))
crypto/openssl/test/quic_multistream_test.c
1487
if (!TEST_ptr(op->stream_name))
crypto/openssl/test/quic_multistream_test.c
1508
if (!TEST_true(helper_local_set_c_stream(hl, op->stream_name, c_stream)))
crypto/openssl/test/quic_multistream_test.c
1518
if (!TEST_ptr(op->stream_name))
crypto/openssl/test/quic_multistream_test.c
1530
if (!TEST_true(helper_set_s_stream(h, op->stream_name,
crypto/openssl/test/quic_multistream_test.c
1541
if (!TEST_ptr(op->stream_name))
crypto/openssl/test/quic_multistream_test.c
1547
if (!TEST_true(helper_local_set_c_stream(hl, op->stream_name,
crypto/openssl/test/quic_multistream_test.c
1558
if (!TEST_ptr(op->stream_name))
crypto/openssl/test/quic_multistream_test.c
1565
if (!TEST_true(helper_set_s_stream(h, op->stream_name, new_stream_id)))
crypto/openssl/test/quic_multistream_test.c
1584
if (!TEST_ptr(op->stream_name))
crypto/openssl/test/quic_multistream_test.c
1587
if (!TEST_true(helper_local_set_c_stream(hl, op->stream_name, NULL)))
crypto/openssl/test/quic_multistream_test.c
1691
if (!TEST_ptr(op->stream_name))
crypto/openssl/test/quic_multistream_test.c
1694
if (!TEST_true(helper_set_s_stream(h, op->stream_name, op->arg2)))
crypto/openssl/test/quic_multistream_test.c
1702
if (!TEST_ptr(op->stream_name))
crypto/openssl/test/quic_multistream_test.c
1705
if (!TEST_true(helper_set_s_stream(h, op->stream_name, UINT64_MAX)))
crypto/openssl/test/quic_multistream_test.c
229
#define OP_C_WRITE(stream_name, buf, buf_len) \
crypto/openssl/test/quic_multistream_test.c
230
{ OPK_C_WRITE, (buf), (buf_len), NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
231
#define OP_S_WRITE(stream_name, buf, buf_len) \
crypto/openssl/test/quic_multistream_test.c
232
{ OPK_S_WRITE, (buf), (buf_len), NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
233
#define OP_C_READ_EXPECT(stream_name, buf, buf_len) \
crypto/openssl/test/quic_multistream_test.c
234
{ OPK_C_READ_EXPECT, (buf), (buf_len), NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
235
#define OP_S_READ_EXPECT(stream_name, buf, buf_len) \
crypto/openssl/test/quic_multistream_test.c
236
{ OPK_S_READ_EXPECT, (buf), (buf_len), NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
237
#define OP_C_EXPECT_FIN(stream_name) \
crypto/openssl/test/quic_multistream_test.c
238
{ OPK_C_EXPECT_FIN, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
239
#define OP_S_EXPECT_FIN(stream_name) \
crypto/openssl/test/quic_multistream_test.c
240
{ OPK_S_EXPECT_FIN, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
241
#define OP_C_CONCLUDE(stream_name) \
crypto/openssl/test/quic_multistream_test.c
242
{ OPK_C_CONCLUDE, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
243
#define OP_S_CONCLUDE(stream_name) \
crypto/openssl/test/quic_multistream_test.c
244
{ OPK_S_CONCLUDE, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
245
#define OP_C_DETACH(stream_name) \
crypto/openssl/test/quic_multistream_test.c
246
{ OPK_C_DETACH, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
247
#define OP_C_ATTACH(stream_name) \
crypto/openssl/test/quic_multistream_test.c
248
{ OPK_C_ATTACH, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
249
#define OP_C_NEW_STREAM_BIDI(stream_name, expect_id) \
crypto/openssl/test/quic_multistream_test.c
250
{ OPK_C_NEW_STREAM, NULL, 0, NULL, #stream_name, (expect_id) },
crypto/openssl/test/quic_multistream_test.c
251
#define OP_C_NEW_STREAM_BIDI_EX(stream_name, expect_id, flags) \
crypto/openssl/test/quic_multistream_test.c
252
{ OPK_C_NEW_STREAM, NULL, (flags), NULL, #stream_name, (expect_id) },
crypto/openssl/test/quic_multistream_test.c
253
#define OP_C_NEW_STREAM_UNI(stream_name, expect_id) \
crypto/openssl/test/quic_multistream_test.c
255
NULL, #stream_name, (expect_id) },
crypto/openssl/test/quic_multistream_test.c
256
#define OP_C_NEW_STREAM_UNI_EX(stream_name, expect_id, flags) \
crypto/openssl/test/quic_multistream_test.c
258
NULL, #stream_name, (expect_id) },
crypto/openssl/test/quic_multistream_test.c
259
#define OP_S_NEW_STREAM_BIDI(stream_name, expect_id) \
crypto/openssl/test/quic_multistream_test.c
260
{ OPK_S_NEW_STREAM, NULL, 0, NULL, #stream_name, (expect_id) },
crypto/openssl/test/quic_multistream_test.c
261
#define OP_S_NEW_STREAM_UNI(stream_name, expect_id) \
crypto/openssl/test/quic_multistream_test.c
262
{ OPK_S_NEW_STREAM, NULL, 1, NULL, #stream_name, (expect_id) },
crypto/openssl/test/quic_multistream_test.c
263
#define OP_C_ACCEPT_STREAM_WAIT(stream_name) \
crypto/openssl/test/quic_multistream_test.c
264
{ OPK_C_ACCEPT_STREAM_WAIT, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
267
#define OP_C_FREE_STREAM(stream_name) \
crypto/openssl/test/quic_multistream_test.c
268
{ OPK_C_FREE_STREAM, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
283
#define OP_S_BIND_STREAM_ID(stream_name, stream_id) \
crypto/openssl/test/quic_multistream_test.c
284
{ OPK_S_BIND_STREAM_ID, NULL, 0, NULL, #stream_name, (stream_id) },
crypto/openssl/test/quic_multistream_test.c
285
#define OP_C_WAIT_FOR_DATA(stream_name) \
crypto/openssl/test/quic_multistream_test.c
286
{ OPK_C_WAIT_FOR_DATA, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
287
#define OP_C_WRITE_FAIL(stream_name) \
crypto/openssl/test/quic_multistream_test.c
288
{ OPK_C_WRITE_FAIL, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
289
#define OP_S_WRITE_FAIL(stream_name) \
crypto/openssl/test/quic_multistream_test.c
290
{ OPK_S_WRITE_FAIL, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
291
#define OP_C_READ_FAIL(stream_name) \
crypto/openssl/test/quic_multistream_test.c
292
{ OPK_C_READ_FAIL, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
293
#define OP_S_READ_FAIL(stream_name, allow_zero_len) \
crypto/openssl/test/quic_multistream_test.c
294
{ OPK_S_READ_FAIL, NULL, (allow_zero_len), NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
295
#define OP_C_STREAM_RESET(stream_name, aec) \
crypto/openssl/test/quic_multistream_test.c
296
{ OPK_C_STREAM_RESET, NULL, 0, NULL, #stream_name, (aec) },
crypto/openssl/test/quic_multistream_test.c
297
#define OP_C_STREAM_RESET_FAIL(stream_name, aec) \
crypto/openssl/test/quic_multistream_test.c
298
{ OPK_C_STREAM_RESET_FAIL, NULL, 0, NULL, #stream_name, (aec) },
crypto/openssl/test/quic_multistream_test.c
299
#define OP_S_ACCEPT_STREAM_WAIT(stream_name) \
crypto/openssl/test/quic_multistream_test.c
300
{ OPK_S_ACCEPT_STREAM_WAIT, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
307
#define OP_S_UNBIND_STREAM_ID(stream_name) \
crypto/openssl/test/quic_multistream_test.c
308
{ OPK_S_UNBIND_STREAM_ID, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
309
#define OP_C_READ_FAIL_WAIT(stream_name) \
crypto/openssl/test/quic_multistream_test.c
310
{ OPK_C_READ_FAIL_WAIT, NULL, 0, NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
313
#define OP_C_EXPECT_SSL_ERR(stream_name, err) \
crypto/openssl/test/quic_multistream_test.c
314
{ OPK_C_EXPECT_SSL_ERR, NULL, (err), NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
327
#define OP_C_SET_WRITE_BUF_SIZE(stream_name, size) \
crypto/openssl/test/quic_multistream_test.c
328
{ OPK_C_SET_WRITE_BUF_SIZE, NULL, (size), NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
333
#define OP_C_SKIP_IF_UNBOUND(stream_name, n) \
crypto/openssl/test/quic_multistream_test.c
334
{ OPK_C_SKIP_IF_UNBOUND, NULL, (n), NULL, #stream_name },
crypto/openssl/test/quic_multistream_test.c
341
#define OP_C_WRITE_EX2(stream_name, buf, buf_len, flags) \
crypto/openssl/test/quic_multistream_test.c
342
{ OPK_C_WRITE_EX2, (buf), (buf_len), NULL, #stream_name, (flags) },
crypto/openssl/test/quic_multistream_test.c
895
const char *stream_name)
crypto/openssl/test/quic_multistream_test.c
899
if (!TEST_ptr(stream_name))
crypto/openssl/test/quic_multistream_test.c
902
if (!strcmp(stream_name, "DEFAULT"))
crypto/openssl/test/quic_multistream_test.c
905
key.name = stream_name;
crypto/openssl/test/quic_multistream_test.c
912
info->name = stream_name;
crypto/openssl/test/quic_multistream_test.c
921
const char *stream_name,
crypto/openssl/test/quic_multistream_test.c
924
STREAM_INFO *info = get_stream_info(hl->c_streams, stream_name);
crypto/openssl/test/quic_multistream_test.c
935
const char *stream_name)
crypto/openssl/test/quic_multistream_test.c
939
if (!strcmp(stream_name, "DEFAULT"))
crypto/openssl/test/quic_multistream_test.c
942
info = get_stream_info(hl->c_streams, stream_name);
crypto/openssl/test/quic_multistream_test.c
950
helper_set_s_stream(struct helper *h, const char *stream_name,
crypto/openssl/test/quic_multistream_test.c
955
if (!strcmp(stream_name, "DEFAULT"))
crypto/openssl/test/quic_multistream_test.c
958
info = get_stream_info(h->s_streams, stream_name);
crypto/openssl/test/quic_multistream_test.c
967
static uint64_t helper_get_s_stream(struct helper *h, const char *stream_name)
crypto/openssl/test/quic_multistream_test.c
971
if (!strcmp(stream_name, "DEFAULT"))
crypto/openssl/test/quic_multistream_test.c
974
info = get_stream_info(h->s_streams, stream_name);
crypto/openssl/test/radix/quic_ops.c
1106
#define OP_NEW_STREAM(conn_name, stream_name, flags) \
crypto/openssl/test/radix/quic_ops.c
1108
OP_PUSH_PZ(#stream_name), \
crypto/openssl/test/radix/quic_ops.c
1113
#define OP_ACCEPT_STREAM_WAIT(conn_name, stream_name, flags) \
crypto/openssl/test/radix/quic_ops.c
1115
OP_PUSH_PZ(#stream_name), \
crypto/openssl/test/radix/quic_ops.c
1218
#define OP_DETACH(conn_name, stream_name) \
crypto/openssl/test/radix/quic_ops.c
1220
OP_PUSH_PZ(#stream_name), \
crypto/openssl/test/radix/quic_ops.c
1223
#define OP_ATTACH(conn_name, stream_name) \
crypto/openssl/test/radix/quic_ops.c
1225
OP_PUSH_PZ(stream_name), \
crypto/openssl/test/radix/quic_ops.c
296
const char *stream_name;
crypto/openssl/test/radix/quic_ops.c
301
F_POP(stream_name);
crypto/openssl/test/radix/quic_ops.c
304
if (!TEST_ptr_null(RADIX_PROCESS_get_obj(RP(), stream_name)))
crypto/openssl/test/radix/quic_ops.c
322
&& !TEST_true(RADIX_PROCESS_set_ssl(RP(), stream_name, stream))) {
crypto/openssl/test/radix/quic_ops.c
753
const char *conn_name, *stream_name;
crypto/openssl/test/radix/quic_ops.c
756
F_POP2(conn_name, stream_name);
crypto/openssl/test/radix/quic_ops.c
763
if (!TEST_true(RADIX_PROCESS_set_ssl(RP(), stream_name, stream))) {
crypto/openssl/test/radix/quic_ops.c
776
const char *conn_name, *stream_name;
crypto/openssl/test/radix/quic_ops.c
779
F_POP2(conn_name, stream_name);
crypto/openssl/test/radix/quic_ops.c
784
if (!TEST_ptr(stream = RADIX_PROCESS_get_ssl(RP(), stream_name)))
crypto/openssl/test/radix/quic_ops.c
790
if (!TEST_true(RADIX_PROCESS_set_ssl(RP(), stream_name, NULL)))
lib/libstdbuf/stdbuf.c
75
stream_name(s));
lib/libstdbuf/stdbuf.c
90
stream_name(s));
lib/libstdbuf/stdbuf.c
97
stream_name(s));