Home
last modified time | relevance | path

Searched refs:nghttp2_get_uint32 (Results 1 – 10 of 10) sorted by relevance

/third_party/nghttp2/lib/
Dnghttp2_frame.c46 hd->length = nghttp2_get_uint32(&buf[0]) >> 8; in nghttp2_frame_unpack_frame_hd()
49 hd->stream_id = nghttp2_get_uint32(&buf[5]) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_frame_hd()
414 dep_stream_id = nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_priority_spec()
476 frame->error_code = nghttp2_get_uint32(payload); in nghttp2_frame_unpack_rst_stream_payload()
521 iv->value = nghttp2_get_uint32(&payload[2]); in nghttp2_frame_unpack_settings_entry()
592 nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_push_promise_payload()
654 frame->last_stream_id = nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_goaway_payload()
655 frame->error_code = nghttp2_get_uint32(payload + 4); in nghttp2_frame_unpack_goaway_payload()
712 nghttp2_get_uint32(payload) & NGHTTP2_WINDOW_SIZE_INCREMENT_MASK; in nghttp2_frame_unpack_window_update_payload()
929 nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_priority_update_payload()
[all …]
Dnghttp2_helper.h68 uint32_t nghttp2_get_uint32(const uint8_t *data);
Dnghttp2_helper.c48 uint32_t nghttp2_get_uint32(const uint8_t *data) { in nghttp2_get_uint32() function
Dlibnghttp2_shared.map90 nghttp2_get_uint32;
Dnghttp2_session.c6649 nghttp2_get_uint32(iframe->sbuf.pos) & NGHTTP2_STREAM_ID_MASK); in nghttp2_session_mem_recv()
/third_party/node/deps/nghttp2/lib/
Dnghttp2_frame.c46 hd->length = nghttp2_get_uint32(&buf[0]) >> 8; in nghttp2_frame_unpack_frame_hd()
49 hd->stream_id = nghttp2_get_uint32(&buf[5]) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_frame_hd()
414 dep_stream_id = nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_priority_spec()
476 frame->error_code = nghttp2_get_uint32(payload); in nghttp2_frame_unpack_rst_stream_payload()
521 iv->value = nghttp2_get_uint32(&payload[2]); in nghttp2_frame_unpack_settings_entry()
592 nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_push_promise_payload()
654 frame->last_stream_id = nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_goaway_payload()
655 frame->error_code = nghttp2_get_uint32(payload + 4); in nghttp2_frame_unpack_goaway_payload()
712 nghttp2_get_uint32(payload) & NGHTTP2_WINDOW_SIZE_INCREMENT_MASK; in nghttp2_frame_unpack_window_update_payload()
929 nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_priority_update_payload()
[all …]
Dnghttp2_helper.h68 uint32_t nghttp2_get_uint32(const uint8_t *data);
Dnghttp2_helper.c48 uint32_t nghttp2_get_uint32(const uint8_t *data) { in nghttp2_get_uint32() function
Dnghttp2_session.c6644 nghttp2_get_uint32(iframe->sbuf.pos) & NGHTTP2_STREAM_ID_MASK); in nghttp2_session_mem_recv()
/third_party/nghttp2/tests/
Dnghttp2_session_test.c2014 payloadlen = nghttp2_get_uint32(buf->pos) >> 8; in test_nghttp2_session_recv_premature_headers()
2045 payloadlen = nghttp2_get_uint32(buf->pos) >> 8; in test_nghttp2_session_recv_premature_headers()
3208 CU_ASSERT(1 == nghttp2_get_uint32(&acc.buf[5])); in test_nghttp2_session_add_frame()
6665 len = nghttp2_get_uint32(acc.buf) >> 8; in test_nghttp2_submit_extension()
6671 stream_id = (int32_t)nghttp2_get_uint32(acc.buf + 5); in test_nghttp2_submit_extension()