Home
last modified time | relevance | path

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

/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()
389 dep_stream_id = nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_priority_spec()
457 frame->error_code = nghttp2_get_uint32(payload); in nghttp2_frame_unpack_rst_stream_payload()
502 iv->value = nghttp2_get_uint32(&payload[2]); in nghttp2_frame_unpack_settings_entry()
573 nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_push_promise_payload()
638 frame->last_stream_id = nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_goaway_payload()
639 frame->error_code = nghttp2_get_uint32(payload + 4); in nghttp2_frame_unpack_goaway_payload()
700 nghttp2_get_uint32(payload) & NGHTTP2_WINDOW_SIZE_INCREMENT_MASK; in nghttp2_frame_unpack_window_update_payload()
1093 newlen = (nghttp2_get_uint32(buf->pos) >> 8) + padlen; in frame_set_pad()
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
/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()
389 dep_stream_id = nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_priority_spec()
457 frame->error_code = nghttp2_get_uint32(payload); in nghttp2_frame_unpack_rst_stream_payload()
502 iv->value = nghttp2_get_uint32(&payload[2]); in nghttp2_frame_unpack_settings_entry()
573 nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_push_promise_payload()
638 frame->last_stream_id = nghttp2_get_uint32(payload) & NGHTTP2_STREAM_ID_MASK; in nghttp2_frame_unpack_goaway_payload()
639 frame->error_code = nghttp2_get_uint32(payload + 4); in nghttp2_frame_unpack_goaway_payload()
700 nghttp2_get_uint32(payload) & NGHTTP2_WINDOW_SIZE_INCREMENT_MASK; in nghttp2_frame_unpack_window_update_payload()
1093 newlen = (nghttp2_get_uint32(buf->pos) >> 8) + padlen; in frame_set_pad()
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;
/third_party/nghttp2/tests/
Dnghttp2_session_test.c1909 payloadlen = nghttp2_get_uint32(buf->pos) >> 8; in test_nghttp2_session_recv_premature_headers()
1940 payloadlen = nghttp2_get_uint32(buf->pos) >> 8; in test_nghttp2_session_recv_premature_headers()
2900 CU_ASSERT(1 == nghttp2_get_uint32(&acc.buf[5])); in test_nghttp2_session_add_frame()
6216 len = nghttp2_get_uint32(acc.buf) >> 8; in test_nghttp2_submit_extension()
6222 stream_id = (int32_t)nghttp2_get_uint32(acc.buf + 5); in test_nghttp2_submit_extension()