HomeSort by: relevance | last modified time | path
    Searched defs:stream_id (Results 1 - 24 of 24) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_va.c 39 * @stream_id: The overlay stream id.
43 u32 stream_id; member in struct:vmw_stream
67 ret = vmw_overlay_unref(dev_priv, stream->stream_id);
75 return vmw_overlay_claim(res->dev_priv, &stream->stream_id);
82 arg->stream_id = handle;
125 arg->stream_id, TTM_REF_USAGE);
169 *inout_id = stream->stream_id;
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_txpim.h 53 uint64_t stream_id; member in struct:quic_txpim_chunk_st
117 * The chunks are sorted by (stream_id, start) in ascending order.
quic_wire.h 157 uint64_t stream_id; /* Stream ID */ member in struct:ossl_quic_frame_stream_st
186 uint64_t stream_id; member in struct:ossl_quic_frame_reset_stream_st
193 uint64_t stream_id; member in struct:ossl_quic_frame_stop_sending_st
301 * Encodes a QUIC STREAM frame's header to the packet writer. The f->stream_id,
348 uint64_t stream_id,
372 uint64_t stream_id,
609 * Decodes a QUIC MAX_STREAM_DATA frame. The Stream ID is written to *stream_id
613 uint64_t *stream_id,
635 * Data fields are written to *stream_id and *max_stream_data respectively.
638 uint64_t *stream_id,
    [all...]
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
qlog_event_helpers.c 272 QLOG_U64("stream_id", f.stream_id);
283 QLOG_U64("stream_id", f.stream_id);
311 QLOG_U64("stream_id", f.stream_id);
345 uint64_t stream_id, max_data; local
347 if (!ossl_quic_wire_decode_frame_max_stream_data(pkt, &stream_id,
352 QLOG_U64("stream_id", stream_id);
426 uint64_t stream_id, x; local
    [all...]
quic_trace.c 136 (unsigned long long)frame_data.stream_id);
153 (unsigned long long)frame_data.stream_id);
235 (unsigned long long)frame_data.stream_id);
264 uint64_t stream_id = 0; local
267 if (!ossl_quic_wire_decode_frame_max_stream_data(pkt, &stream_id,
303 uint64_t stream_id = 0; local
306 if (!ossl_quic_wire_decode_frame_stream_data_blocked(pkt, &stream_id,
310 BIO_printf(bio, " Stream id: %llu\n", (unsigned long long)stream_id);
quic_rx_depack.c 33 uint64_t stream_id,
158 if (!depack_do_implicit_stream_create(ch, frame_data.stream_id,
233 if (!depack_do_implicit_stream_create(ch, frame_data.stream_id,
368 uint64_t stream_id,
378 stream = ossl_quic_stream_map_get_by_id(&ch->qsm, stream_id);
406 is_remote_init = ((stream_id & QUIC_STREAM_INITIATOR_MASK) == peer_role);
407 is_uni = ((stream_id & QUIC_STREAM_DIR_MASK) == QUIC_STREAM_DIR_UNI);
409 stream_ordinal = stream_id >> 2;
450 uint64_t cur_stream_id = (*p_next_ordinal_remote << 2) | (stream_id & (QUIC_STREAM_DIR_MASK | QUIC_STREAM_INITIATOR_MASK));
518 if (!depack_do_implicit_stream_create(ch, frame_data.stream_id,
693 uint64_t stream_id = 0; local
799 uint64_t stream_id = 0; local
    [all...]
quic_channel.c 612 uint64_t stream_id)
614 return ossl_quic_stream_map_get_by_id(&ch->qsm, stream_id);
3862 uint64_t stream_id; local
3878 stream_id = ((*p_next_ordinal) << 2) | type;
3880 if ((qs = ossl_quic_stream_map_alloc(&ch->qsm, stream_id, type)) == NULL)
3896 uint64_t stream_id)
3906 if ((stream_id & QUIC_STREAM_INITIATOR_MASK) != peer_role)
3909 is_uni = ((stream_id & QUIC_STREAM_DIR_MASK) == QUIC_STREAM_DIR_UNI);
3911 qs = ossl_quic_stream_map_alloc(&ch->qsm, stream_id,
3912 stream_id & (QUIC_STREAM_INITIATOR_MASK | QUIC_STREAM_DIR_MASK))
    [all...]
  /src/external/bsd/unbound/dist/testcode/
dohclient.c 74 int32_t stream_id; member in struct:http2_stream
127 int32_t ATTR_UNUSED(stream_id), uint8_t* buf, size_t length,
147 int32_t stream_id; local
206 stream_id = nghttp2_submit_request(h2_session->session, NULL, headers,
209 if(stream_id < 0) {
214 h2_stream->stream_id = stream_id;
337 int32_t ATTR_UNUSED(stream_id),
343 h2_session->session, stream_id))) {
356 uint8_t ATTR_UNUSED(flags), int32_t stream_id, const uint8_t* data variable
    [all...]
doqclient.c 182 * it. The stream_id is in stream_id. */
185 int64_t stream_id; member in struct:doq_client_stream
367 str->stream_id = -1;
384 client_stream_start_setup(struct doq_client_stream* str, int64_t stream_id)
387 str->stream_id = stream_id;
761 int64_t stream_id; local
765 rv = ngtcp2_conn_open_bidi_stream(data->conn, &stream_id,
775 *ret_stream_id = stream_id;
786 int64_t stream_id = 0; local
938 int64_t stream_id, uint64_t offset, const uint8_t* data, variable
976 stream_reset(ngtcp2_conn* ATTR_UNUSED(conn), int64_t stream_id, variable
    [all...]
  /src/crypto/external/apache2/openssl/dist/demos/http3/
ossl-nghttp3.c 148 static int h3_conn_recv_data(nghttp3_conn *h3conn, int64_t stream_id,
158 return conn->recv_data_cb(h3conn, stream_id, data, datalen,
162 static int h3_conn_stream_close(nghttp3_conn *h3conn, int64_t stream_id,
171 ret = conn->stream_close_cb(h3conn, stream_id, app_error_code,
178 static int h3_conn_stop_sending(nghttp3_conn *h3conn, int64_t stream_id,
187 ret = conn->stop_sending_cb(h3conn, stream_id, app_error_code,
195 static int h3_conn_reset_stream(nghttp3_conn *h3conn, int64_t stream_id,
205 ret = conn->reset_stream_cb(h3conn, stream_id, app_error_code,
218 static int h3_conn_deferred_consume(nghttp3_conn *h3conn, int64_t stream_id,
226 ret = conn->deferred_consume_cb(h3conn, stream_id, consumed
574 int64_t stream_id; local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/
dc_stream.h 223 uint32_t stream_id; member in struct:dc_stream_state
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_hdcp.h 133 u8 stream_id; member in struct:hdcp2_streamid_type
  /src/sys/netinet/
sctp.h 206 u_int16_t stream_id; /* stream id of the DATA in error */ member in struct:sctp_error_invalid_stream
sctp_header.h 133 u_int16_t stream_id; member in struct:sctp_data
  /src/crypto/external/apache2/openssl/dist/test/radix/
quic_bindings.c 265 uint64_t stream_id = SSL_get_stream_id(ssl), rec, wec; local
268 if (stream_id != UINT64_MAX)
270 (unsigned long long)stream_id);
  /src/external/bsd/unbound/dist/services/
listen_dnsport.h 666 /** the rbtree node for the stream, key is the stream_id */
669 int64_t stream_id; member in struct:doq_stream
785 struct doq_stream* doq_stream_find(struct doq_conn* conn, int64_t stream_id);
listen_dnsport.c 2519 int32_t stream_id, uint8_t* buf, size_t length, uint32_t* data_flags, variable
2526 h2_session->session, stream_id))) {
2570 NGHTTP2_FLAG_NONE, h2_stream->stream_id,
2659 ret = nghttp2_submit_response(h2_session->session, h2_stream->stream_id,
2701 int32_t stream_id, uint8_t* buf, size_t length, uint32_t* data_flags, variable
2708 h2_session->session, stream_id))) {
2750 ret = nghttp2_submit_response(h2_session->session, h2_stream->stream_id,
2828 session, frame->hd.stream_id)))
2912 if(!(h2_stream = http2_stream_create(frame->hd.stream_id))) {
2918 frame->hd.stream_id, h2_stream)
3147 uint8_t ATTR_UNUSED(flags), int32_t stream_id, const uint8_t* data, variable
4315 doq_stream_open_cb(ngtcp2_conn* ATTR_UNUSED(conn), int64_t stream_id, variable
4358 int64_t stream_id, uint64_t offset, const uint8_t* data, variable
4405 int64_t stream_id, uint64_t app_error_code, void* user_data, variable
4433 doq_stream_reset_cb(ngtcp2_conn* ATTR_UNUSED(conn), int64_t stream_id, variable
4457 int64_t stream_id, uint64_t offset, uint64_t datalen, void* user_data, variable
5347 int64_t stream_id; local
    [all...]
  /src/sys/external/bsd/drm2/dist/include/uapi/drm/
vmwgfx_drm.h 466 * @stream_id: Stearm to control
482 __u32 stream_id; member in struct:drm_vmw_control_stream_arg
540 * @stream_id: Device unique context ID.
547 __u32 stream_id; member in struct:drm_vmw_stream_arg
  /src/external/bsd/unbound/dist/util/
netevent.h 971 int32_t stream_id; member in struct:http2_stream
1009 int http2_stream_close_cb(nghttp2_session* session, int32_t stream_id,
1015 * @param stream_id: ID for stream to create.
1018 struct http2_stream* http2_stream_create(int32_t stream_id);
netevent.c 5109 struct http2_stream* http2_stream_create(int32_t stream_id)
5116 h2_stream->stream_id = stream_id;
5160 int32_t stream_id, uint32_t ATTR_UNUSED(error_code), void* cb_arg) local
5165 h2_session->session, stream_id))) {
  /src/crypto/external/apache2/openssl/dist/test/
quic_wire_test.c 388 if (!TEST_uint64_t_eq(f.stream_id, 0x1234))
443 if (!TEST_uint64_t_eq(f.stream_id, 0x1234))
511 uint64_t stream_id = 0, max_data = 0; local
514 &stream_id,
522 if (!TEST_uint64_t_eq(stream_id, 0x1234))
666 uint64_t stream_id = 0, max_data = 0; local
669 &stream_id,
677 if (!TEST_uint64_t_eq(stream_id, 0x1234))
quic_multistream_test.c 283 #define OP_S_BIND_STREAM_ID(stream_name, stream_id) \
284 { OPK_S_BIND_STREAM_ID, NULL, 0, NULL, #stream_name, (stream_id) },
381 uint64_t stream_id = hl->check_op->arg2; local
383 if (!ossl_quic_tserver_stream_has_peer_stop_sending(ACQUIRE_S(), stream_id, NULL)
384 || !ossl_quic_tserver_stream_has_peer_reset_stream(ACQUIRE_S(), stream_id, NULL)) {
394 uint64_t stream_id = hl->check_op->arg2, aec = 0; local
396 if (!ossl_quic_tserver_stream_has_peer_reset_stream(ACQUIRE_S(), stream_id, &aec)) {
406 uint64_t stream_id = hl->check_op->arg2; local
408 if (!ossl_quic_tserver_stream_has_peer_stop_sending(ACQUIRE_S(), stream_id, NULL)) {
1513 uint64_t stream_id = UINT64_MAX local
    [all...]
  /src/external/mpl/bind/dist/lib/isc/netmgr/
netmgr-int.h 456 int32_t stream_id; member in struct:isc_nmsocket_h2
http.c 146 int32_t stream_id; member in struct:http_cstream
428 find_http_cstream(int32_t stream_id, isc_nm_http_session_t *session) {
439 if (cstream->stream_id == stream_id) {
465 *stream = (http_cstream_t){ .stream_id = -1,
614 on_client_data_chunk_recv_callback(int32_t stream_id, const uint8_t *data,
616 http_cstream_t *cstream = find_http_cstream(stream_id, session);
637 on_server_data_chunk_recv_callback(int32_t stream_id, const uint8_t *data,
643 if (stream_id == h2->stream_id) {
1002 int32_t stream_id; local
    [all...]

Completed in 73 milliseconds