Home
last modified time | relevance | path

Searched refs:stream_id (Results 1 – 15 of 15) sorted by relevance

/AliOS-Things-master/components/linkkit/external/nghttp2/
A Dnghttp2_submit.c52 if (stream_id == -1) { in detect_self_dependency()
59 if (stream_id == pri_spec->stream_id) { in detect_self_dependency()
103 if (stream_id == -1) { in submit_headers_shared()
131 return stream_id; in submit_headers_shared()
178 if (stream_id <= 0) { in nghttp2_submit_trailer()
195 if (stream_id == -1) { in nghttp2_submit_headers()
244 if (stream_id == pri_spec->stream_id) { in nghttp2_submit_priority()
281 if (stream_id == 0) { in nghttp2_submit_rst_stream()
338 if (stream_id <= 0 || nghttp2_session_is_my_stream_id(session, stream_id)) { in nghttp2_submit_push_promise()
399 if (stream_id == 0) { in nghttp2_submit_window_update()
[all …]
A Dnghttp2_session.c787 assert(pri_spec->stream_id != stream->stream_id); in nghttp2_session_reprioritize_stream()
985 if (headers_frame->hd.stream_id <= stream_id && in nghttp2_session_add_rst_stream()
990 if (item->frame.hd.stream_id < stream_id) { in nghttp2_session_add_rst_stream()
996 if (item->frame.hd.stream_id > stream_id || in nghttp2_session_add_rst_stream()
3892 stream_id = frame->hd.stream_id; in session_after_header_block_received()
3995 if (frame->headers.pri_spec.stream_id == frame->hd.stream_id) { in nghttp2_session_on_request_headers_received()
4203 if (frame->priority.pri_spec.stream_id == frame->hd.stream_id) { in nghttp2_session_on_priority_received()
5277 stream_id = iframe->frame.hd.stream_id; in session_on_data_received_fail_fast()
6472 cont_hd.stream_id != iframe->frame.hd.stream_id) { in nghttp2_session_mem_recv()
7733 if (stream_id == 0 || stream_id == pri_spec->stream_id) { in nghttp2_session_change_stream_priority()
[all …]
A Dnghttp2_priority_spec.c28 int32_t stream_id, int32_t weight, in nghttp2_priority_spec_init() argument
31 pri_spec->stream_id = stream_id; in nghttp2_priority_spec_init()
38 pri_spec->stream_id = 0; in nghttp2_priority_spec_default_init()
45 return pri_spec->stream_id == 0 && in nghttp2_priority_spec_check_default()
A Dnghttp2_stream.c72 stream->stream_id = stream_id; in nghttp2_stream_init()
168 dep_stream->stream_id); in stream_obq_push()
229 stream->stream_id, src->stream_id); in stream_obq_move()
342 stream->stream_id); in ensure_inactive()
457 assert(stream->stream_id == 0); in validate_tree()
638 dep_stream->stream_id, stream, stream->stream_id); in nghttp2_stream_dep_insert()
789 dep_stream->stream_id, stream, stream->stream_id); in nghttp2_stream_dep_add()
863 dep_stream, dep_stream->stream_id, stream, stream->stream_id); in nghttp2_stream_dep_insert_subtree()
912 dep_stream, dep_stream->stream_id, stream, stream->stream_id); in nghttp2_stream_dep_add_subtree()
939 stream->stream_id); in nghttp2_stream_dep_remove_subtree()
[all …]
A Dnghttp2.h788 int32_t stream_id; member
993 int32_t stream_id; member
3064 nghttp2_session *session, int32_t stream_id);
3121 nghttp2_session *session, int32_t stream_id);
3141 nghttp2_session *session, int32_t stream_id);
3156 nghttp2_session *session, int32_t stream_id);
3224 nghttp2_session *session, int32_t stream_id);
3243 nghttp2_session *session, int32_t stream_id);
3252 nghttp2_session *session, int32_t stream_id);
3514 nghttp2_session *session, int32_t stream_id,
[all …]
A Dnghttp2_frame.h86 uint8_t flags, int32_t stream_id);
401 int32_t stream_id, nghttp2_headers_category cat,
407 void nghttp2_frame_priority_init(nghttp2_priority *frame, int32_t stream_id,
412 void nghttp2_frame_rst_stream_init(nghttp2_rst_stream *frame, int32_t stream_id,
422 int32_t stream_id,
462 uint8_t flags, int32_t stream_id,
468 uint8_t flags, int32_t stream_id,
480 void nghttp2_frame_altsvc_init(nghttp2_extension *frame, int32_t stream_id,
501 int32_t stream_id);
A Dnghttp2_frame.c42 nghttp2_put_uint32be(&buf[5], (uint32_t)hd->stream_id); in nghttp2_frame_pack_frame_hd()
56 uint8_t flags, int32_t stream_id) in nghttp2_frame_hd_init() argument
61 hd->stream_id = stream_id; in nghttp2_frame_hd_init()
105 stream_id); in nghttp2_frame_rst_stream_init()
129 int32_t stream_id, in nghttp2_frame_push_promise_init() argument
134 stream_id); in nghttp2_frame_push_promise_init()
187 stream_id); in nghttp2_frame_window_update_init()
210 int32_t stream_id) in nghttp2_frame_data_init() argument
223 uint8_t flags, int32_t stream_id, in nghttp2_frame_extension_init() argument
226 nghttp2_frame_hd_init(&frame->hd, 0, type, flags, stream_id); in nghttp2_frame_extension_init()
[all …]
A Dnghttp2_session.h363 int32_t stream_id);
396 int nghttp2_session_add_rst_stream(nghttp2_session *session, int32_t stream_id,
451 int32_t stream_id,
490 int32_t stream_id, uint8_t flags,
515 int nghttp2_session_close_stream(nghttp2_session *session, int32_t stream_id,
773 int32_t stream_id);
781 int32_t stream_id);
A Dnghttp2_stream.h179 int32_t stream_id; member
224 void nghttp2_stream_init(nghttp2_stream *stream, int32_t stream_id,
A Dnghttp2_http.c152 if (stream->stream_id % 2 == 0) { in http_request_on_header()
/AliOS-Things-master/components/linkkit/http2/
A Dhttp2_api.c171 if (search_node->stream_id == stream_id) { in http2_stream_node_search()
439 node->stream_id = id; in http2_stream_node_insert()
637 h2_data.stream_id = 0; in IOT_HTTP2_Stream_Open()
765 return h2_data.stream_id; in IOT_HTTP2_Stream_Send_Message()
912 h2_data.stream_id); in IOT_HTTP2_Stream_Send()
976 h2_data.stream_id = 0; in IOT_HTTP2_Stream_Query()
1022 int len = strlen(stream_id); in IOT_HTTP2_FS_Close()
1070 h2_data.stream_id = 0; in IOT_HTTP2_FS_Close()
1111 node->stream_id); in IOT_HTTP2_FS_Close()
1143 int len = strlen(stream_id); in IOT_HTTP2_Stream_Close()
[all …]
A Diotx_http2.c32 int32_t stream_id; member
147 frame->hd.stream_id); in on_frame_send_callback()
176 connection->cbs->on_user_frame_send_cb(frame->hd.stream_id, in on_frame_send_callback()
216 frame->hd.stream_id); in on_frame_recv_callback()
349 stream_id, (unsigned long int)len); in on_data_chunk_recv_callback()
356 nghttp2_session_consume(session, stream_id, len); in on_data_chunk_recv_callback()
433 (int)frame->hd.stream_id); in on_begin_headers_callback()
561 int stream_id = h2_data->stream_id; in iotx_http2_client_send() local
585 h2_data->stream_id = rv; in iotx_http2_client_send()
593 h2_data->stream_id = rv; in iotx_http2_client_send()
[all …]
A Dhttp2_internal.h97 typedef void (*on_user_header_callback)(int32_t stream_id, int cat,
102 typedef void (*on_user_chunk_recv_callback)(int32_t stream_id,
106 typedef void (*on_user_stream_close_callback)(int32_t stream_id,
109 typedef void (*on_user_frame_send_callback)(int32_t stream_id, int type,
112 typedef void (*on_user_frame_recv_callback)(int32_t stream_id, int type,
136 int stream_id; /* send data over specify stream */ member
228 int iotx_http2_reset_stream(http2_connection_t *connection, int32_t stream_id);
/AliOS-Things-master/components/linkkit/include/linkkit/
A Dhttp2_api.h56 typedef void (*on_stream_header_callback)(uint32_t stream_id, char *channel_id,
63 typedef void (*on_stream_chunk_recv_callback)(uint32_t stream_id,
68 typedef void (*on_stream_close_callback)(uint32_t stream_id, char *channel_id,
71 typedef void (*on_stream_frame_send_callback)(uint32_t stream_id,
75 typedef void (*on_stream_frame_recv_callback)(uint32_t stream_id,
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/fwlib/usb_otg/include/
A Dusb.h1269 unsigned int stream_id; /* (in) stream ID */ member

Completed in 53 milliseconds