Lines Matching refs:id

214   int32_t id; /* HTTP/2 protocol identifier for stream */  member
236 stream->id = -1; in h2_stream_ctx_create()
302 ctx->h2, stream->id); in cf_h2_update_local_win()
305 stream->id, dwsize - wsize); in cf_h2_update_local_win()
308 "%s(%d)", stream->id, nghttp2_strerror(rv), rv); in cf_h2_update_local_win()
313 stream->id, dwsize - wsize); in cf_h2_update_local_win()
317 stream->id, dwsize); in cf_h2_update_local_win()
320 "%s(%d)", stream->id, nghttp2_strerror(rv), rv); in cf_h2_update_local_win()
325 stream->id, dwsize); in cf_h2_update_local_win()
362 stream->id, bits); in drain_stream()
408 (void)nghttp2_session_set_stream_user_data(ctx->h2, stream->id, NULL); in http2_data_done()
410 if(!stream->closed && stream->id > 0) { in http2_data_done()
413 stream->id); in http2_data_done()
417 stream->id, NGHTTP2_STREAM_CLOSED); in http2_data_done()
563 stream->id = 1; in cf_h2_ctx_open()
575 rc = nghttp2_session_set_stream_user_data(ctx->h2, stream->id, in cf_h2_ctx_open()
579 stream->id); in cf_h2_ctx_open()
1014 newstream->id = frame->promised_stream_id; in push_promise()
1029 newstream->id, in push_promise()
1033 newstream->id); in push_promise()
1040 if(newstream->id > ctx->local_max_sid) in push_promise()
1041 ctx->local_max_sid = newstream->id; in push_promise()
1064 stream->id, stream->xfer_result, blen); in h2_xfer_write_resp_hd()
1084 stream->id, stream->xfer_result, blen); in h2_xfer_write_resp()
1085 nghttp2_submit_rst_stream(ctx->h2, 0, stream->id, in h2_xfer_write_resp()
1109 ctx->h2, stream->id), in on_stream_frame()
1111 ctx->h2, stream->id)); in on_stream_frame()
1178 rv = nghttp2_session_resume_data(ctx->h2, stream->id); in on_stream_frame()
1197 stream->id, NGHTTP2_STREAM_CLOSED); in on_stream_frame()
1590 stream->id, (int)namelen, name, (int)valuelen, value); in on_header()
1629 stream->id, stream->status_code); in on_header()
1654 stream->id, (int)namelen, name, (int)valuelen, value); in on_header()
1770 "connection", stream->id); in http2_handle_stream_close()
1780 stream->id, nghttp2_http2_strerror(stream->error), in http2_handle_stream_close()
1787 stream->id, nghttp2_http2_strerror(stream->error), in http2_handle_stream_close()
1793 failf(data, "HTTP/2 stream %u was reset", stream->id); in http2_handle_stream_close()
1801 stream->id); in http2_handle_stream_close()
1870 int32_t depstream_id = depstream ? depstream->id : 0; in h2_pri_spec()
1890 if(stream && stream->id > 0 && in h2_progress_egress()
1898 CURL_TRC_CF(data, cf, "[%d] Queuing PRIORITY", stream->id); in h2_progress_egress()
1899 DEBUGASSERT(stream->id != -1); in h2_progress_egress()
1901 stream->id, &pri_spec); in h2_progress_egress()
1934 CURL_TRC_CF(data, cf, "[%d] xfer write failed", stream->id); in stream_recv()
1939 CURL_TRC_CF(data, cf, "[%d] returning CLOSE", stream->id); in stream_recv()
1944 (ctx->rcvd_goaway && ctx->remote_max_sid < stream->id)) { in stream_recv()
1945 CURL_TRC_CF(data, cf, "[%d] returning ERR", stream->id); in stream_recv()
1952 stream->id, len, nread, *err); in stream_recv()
2060 nghttp2_session_consume(ctx->h2, stream->id, (size_t)nread); in cf_h2_recv()
2062 CURL_TRC_CF(data, cf, "[%d] DRAIN closed stream", stream->id); in cf_h2_recv()
2082 stream->id, len, nread, *err, in cf_h2_recv()
2084 ctx->h2, stream->id), in cf_h2_recv()
2086 ctx->h2, stream->id), in cf_h2_recv()
2111 "on closed stream with response", stream->id); in cf_h2_body_send()
2118 infof(data, "stream %u closed", stream->id); in cf_h2_body_send()
2132 int rv = nghttp2_session_resume_data(ctx->h2, stream->id); in cf_h2_body_send()
2237 stream->id = stream_id; in h2_submit()
2257 stream ? stream->id : -1, nwritten, *err); in h2_submit()
2276 if(!stream || stream->id == -1) { in cf_h2_send()
2291 stream->id, nwritten, *err, eos); in cf_h2_send()
2300 stream->id, len, nwritten, *err, eos); in cf_h2_send()
2310 infof(data, "stream %u closed", stream->id); in cf_h2_send()
2339 stream->id, len, nwritten, *err, in cf_h2_send()
2342 ctx->h2, stream->id), in cf_h2_send()
2369 int rv = nghttp2_session_resume_data(ctx->h2, stream->id); in cf_h2_flush()
2383 stream->id, result, in cf_h2_flush()
2385 ctx->h2, stream->id), in cf_h2_flush()
2420 s_exhaust = want_send && stream && stream->id >= 0 && in cf_h2_adjust_pollset()
2422 stream->id); in cf_h2_adjust_pollset()
2598 CURL_TRC_CF(data, cf, "[%d] stream now %spaused", stream->id, in http2_data_pause()