Lines Matching refs:stream_id

146 static int h3_conn_recv_data(nghttp3_conn *h3conn, int64_t stream_id,  in h3_conn_recv_data()  argument
156 return conn->recv_data_cb(h3conn, stream_id, data, datalen, in h3_conn_recv_data()
160 static int h3_conn_stream_close(nghttp3_conn *h3conn, int64_t stream_id, in h3_conn_stream_close() argument
169 ret = conn->stream_close_cb(h3conn, stream_id, app_error_code, in h3_conn_stream_close()
176 static int h3_conn_stop_sending(nghttp3_conn *h3conn, int64_t stream_id, in h3_conn_stop_sending() argument
185 ret = conn->stop_sending_cb(h3conn, stream_id, app_error_code, in h3_conn_stop_sending()
193 static int h3_conn_reset_stream(nghttp3_conn *h3conn, int64_t stream_id, in h3_conn_reset_stream() argument
203 ret = conn->reset_stream_cb(h3conn, stream_id, app_error_code, in h3_conn_reset_stream()
216 static int h3_conn_deferred_consume(nghttp3_conn *h3conn, int64_t stream_id, in h3_conn_deferred_consume() argument
224 ret = conn->deferred_consume_cb(h3conn, stream_id, consumed, in h3_conn_deferred_consume()
569 int64_t stream_id; in OSSL_DEMO_H3_CONN_handle_events() local
610 ec = nghttp3_conn_writev_stream(conn->h3conn, &stream_id, &fin, in OSSL_DEMO_H3_CONN_handle_events()
624 key.id = stream_id; in OSSL_DEMO_H3_CONN_handle_events()
627 "no stream for ID %zd", stream_id); in OSSL_DEMO_H3_CONN_handle_events()
648 nghttp3_conn_block_stream(conn->h3conn, stream_id); in OSSL_DEMO_H3_CONN_handle_events()
659 nghttp3_conn_unblock_stream(conn->h3conn, stream_id); in OSSL_DEMO_H3_CONN_handle_events()
669 ec = nghttp3_conn_add_write_offset(conn->h3conn, stream_id, written); in OSSL_DEMO_H3_CONN_handle_events()
679 ec = nghttp3_conn_add_ack_offset(conn->h3conn, stream_id, written); in OSSL_DEMO_H3_CONN_handle_events()
693 ec = nghttp3_conn_add_write_offset(conn->h3conn, stream_id, 0); in OSSL_DEMO_H3_CONN_handle_events()