Lines Matching refs:stream_id

68 			struct http_client_ctx *client, uint32_t stream_id)  in find_http_stream_context()  argument
71 if (client->streams[i].stream_id == stream_id) { in find_http_stream_context()
80 struct http_client_ctx *client, uint32_t stream_id) in allocate_http_stream_context() argument
84 client->streams[i].stream_id = stream_id; in allocate_http_stream_context()
98 uint32_t stream_id) in release_http_stream_context() argument
101 if (client->streams[i].stream_id == stream_id) { in release_http_stream_context()
102 client->streams[i].stream_id = 0; in release_http_stream_context()
134 uint8_t flags, uint32_t stream_id) in encode_frame_header() argument
139 sys_put_be32(stream_id, &buf[HTTP2_FRAME_STREAM_ID_OFFSET]); in encode_frame_header()
143 uint32_t stream_id, struct http_resource_detail *detail_common, in send_headers_frame() argument
203 flags, stream_id); in send_headers_frame()
218 size_t length, uint32_t stream_id, uint8_t flags) in send_data_frame() argument
226 stream_id); in send_data_frame()
292 uint32_t stream_id; in send_window_update_frame() local
298 stream_id = stream->stream_id; in send_window_update_frame()
302 stream_id = 0; in send_window_update_frame()
307 0, stream_id); in send_window_update_frame()
891 LOG_DBG("Stream ID %d in a wrong state %d", stream->stream_id, in enter_http_frame_data_state()
1715 LOG_DBG("Stream %u reset with error code %u", stream_ctx->stream_id, in handle_http_frame_rst_stream()
1718 release_http_stream_context(client, stream_ctx->stream_id); in handle_http_frame_rst_stream()