Home
last modified time | relevance | path

Searched refs:urgency (Results 1 - 17 of 17) sorted by relevance

/third_party/nghttp2/tests/
H A Dnghttp2_http_test.c46 CU_ASSERT((uint32_t)-1 == pri.urgency); in test_nghttp2_http_parse_priority()
57 CU_ASSERT((uint32_t)7 == pri.urgency); in test_nghttp2_http_parse_priority()
68 CU_ASSERT((uint32_t)0 == pri.urgency); in test_nghttp2_http_parse_priority()
79 CU_ASSERT((uint32_t)3 == pri.urgency); in test_nghttp2_http_parse_priority()
90 CU_ASSERT((uint32_t)6 == pri.urgency); in test_nghttp2_http_parse_priority()
137 CU_ASSERT((uint32_t)-1 == pri.urgency); in test_nghttp2_http_parse_priority()
194 CU_ASSERT((uint32_t)2 == pri.urgency); in test_nghttp2_http_parse_priority()
H A Dnghttp2_session_test.c10793 extpri.urgency = NGHTTP2_EXTPRI_URGENCY_LOW + 1; in test_nghttp2_session_change_extpri_stream_priority()
/third_party/nghttp2/lib/
H A Dnghttp2_extpri.c29 return (uint8_t)((uint32_t)extpri->inc << 7 | extpri->urgency); in nghttp2_extpri_to_uint8()
33 extpri->urgency = nghttp2_extpri_uint8_urgency(u8extpri); in nghttp2_extpri_from_uint8()
H A Dnghttp2_session.c927 uint32_t urgency; in session_ob_data_push() local
934 urgency = nghttp2_extpri_uint8_urgency(stream->extpri); in session_ob_data_push()
937 assert(urgency < NGHTTP2_EXTPRI_URGENCY_LEVELS); in session_ob_data_push()
939 pq = &session->sched[urgency].ob_data; in session_ob_data_push()
958 uint32_t urgency; in session_ob_data_remove() local
963 urgency = nghttp2_extpri_uint8_urgency(stream->extpri); in session_ob_data_remove()
965 assert(urgency < NGHTTP2_EXTPRI_URGENCY_LEVELS); in session_ob_data_remove()
967 nghttp2_pq_remove(&session->sched[urgency].ob_data, &stream->pq_entry); in session_ob_data_remove()
1065 uint32_t urgency = nghttp2_extpri_uint8_urgency(stream->extpri); in session_sched_reschedule_stream() local
1072 assert(urgency < NGHTTP2_EXTPRI_URGENCY_LEVEL in session_sched_reschedule_stream()
[all...]
H A Dnghttp2_http.c622 pri.urgency = (uint32_t)val.integer; in nghttp2_http_parse_priority()
/third_party/node/deps/nghttp2/lib/
H A Dnghttp2_extpri.c29 return (uint8_t)((uint32_t)extpri->inc << 7 | extpri->urgency); in nghttp2_extpri_to_uint8()
33 extpri->urgency = nghttp2_extpri_uint8_urgency(u8extpri); in nghttp2_extpri_from_uint8()
H A Dnghttp2_session.c922 uint32_t urgency; in session_ob_data_push() local
929 urgency = nghttp2_extpri_uint8_urgency(stream->extpri); in session_ob_data_push()
932 assert(urgency < NGHTTP2_EXTPRI_URGENCY_LEVELS); in session_ob_data_push()
934 pq = &session->sched[urgency].ob_data; in session_ob_data_push()
953 uint32_t urgency; in session_ob_data_remove() local
958 urgency = nghttp2_extpri_uint8_urgency(stream->extpri); in session_ob_data_remove()
960 assert(urgency < NGHTTP2_EXTPRI_URGENCY_LEVELS); in session_ob_data_remove()
962 nghttp2_pq_remove(&session->sched[urgency].ob_data, &stream->pq_entry); in session_ob_data_remove()
1060 uint32_t urgency = nghttp2_extpri_uint8_urgency(stream->extpri); in session_sched_reschedule_stream() local
1067 assert(urgency < NGHTTP2_EXTPRI_URGENCY_LEVEL in session_sched_reschedule_stream()
[all...]
H A Dnghttp2_http.c622 pri.urgency = (uint32_t)val.integer; in nghttp2_http_parse_priority()
/third_party/node/deps/ngtcp2/nghttp3/lib/
H A Dnghttp3_frame.c98 assert(fr->pri.urgency <= NGHTTP3_URGENCY_LOW); in nghttp3_frame_write_priority_update()
102 *p++ = (uint8_t)('0' + fr->pri.urgency); in nghttp3_frame_write_priority_update()
H A Dnghttp3_conv.c134 return (uint8_t)((uint32_t)pri->inc << 7 | pri->urgency); in nghttp3_pri_to_uint8()
H A Dnghttp3_conn.c931 rstate->fr.priority_update.pri.urgency = NGHTTP3_DEFAULT_URGENCY; in nghttp3_conn_read_control()
985 rstate->fr.priority_update.pri.urgency = NGHTTP3_DEFAULT_URGENCY; in nghttp3_conn_read_control()
1518 uint32_t urgency = nghttp3_pri_uint8_urgency(tnode->pri); in conn_get_sched_pq() local
1520 assert(urgency < NGHTTP3_URGENCY_LEVELS); in conn_get_sched_pq()
1522 return &conn->sched[urgency].spq; in conn_get_sched_pq()
2103 /* Assume that stream stays on the same urgency level */ in nghttp3_conn_schedule_stream()
2486 dest->urgency = nghttp3_pri_uint8_urgency(stream->node.pri); in nghttp3_conn_get_stream_priority()
2497 assert(pri->urgency < NGHTTP3_URGENCY_LEVELS); in nghttp3_conn_set_stream_priority()
H A Dnghttp3_http.c803 pri.urgency = (uint32_t)val.i; in nghttp3_http_parse_priority()
934 pri.urgency = nghttp3_pri_uint8_urgency(http->pri); in http_request_on_header()
/third_party/node/deps/v8/src/objects/
H A Dcode-inl.h1194 void BytecodeArray::set_osr_urgency(int urgency) { in set_osr_urgency() argument
1195 DCHECK(0 <= urgency && urgency <= BytecodeArray::kMaxOsrUrgency); in set_osr_urgency()
1198 set_osr_urgency_and_install_target(OsrUrgencyBits::update(value, urgency)); in set_osr_urgency()
H A Dcode.h1001 inline void set_osr_urgency(int urgency);
/third_party/node/deps/ngtcp2/nghttp3/lib/includes/nghttp3/
H A Dnghttp3.h2395 * :macro:`NGHTTP3_DEFAULT_URGENCY` is the default urgency level.
2402 * :macro:`NGHTTP3_URGENCY_HIGH` is the highest urgency level.
2409 * :macro:`NGHTTP3_URGENCY_LOW` is the lowest urgency level.
2416 * :macro:`NGHTTP3_URGENCY_LEVELS` is the number of urgency levels.
2427 * :member:`urgency` is the urgency of a stream, it must be in
2429 * inclusive, and 0 is the highest urgency.
2431 uint32_t urgency; member
/third_party/nghttp2/lib/includes/nghttp2/
H A Dnghttp2.h4299 * :macro:`NGHTTP2_EXTPRI_DEFAULT_URGENCY` is the default urgency
4307 * :macro:`NGHTTP2_EXTPRI_URGENCY_HIGH` is the highest urgency level
4315 * :macro:`NGHTTP2_EXTPRI_URGENCY_LOW` is the lowest urgency level for
4323 * :macro:`NGHTTP2_EXTPRI_URGENCY_LEVELS` is the number of urgency
4336 * :member:`urgency` is the urgency of a stream, it must be in
4339 * highest urgency.
4341 uint32_t urgency; member
4954 * If :member:`extpri->urgency <nghttp2_extpri.urgency>` i
[all...]
/third_party/node/deps/nghttp2/lib/includes/nghttp2/
H A Dnghttp2.h4283 * :macro:`NGHTTP2_EXTPRI_DEFAULT_URGENCY` is the default urgency
4291 * :macro:`NGHTTP2_EXTPRI_URGENCY_HIGH` is the highest urgency level
4299 * :macro:`NGHTTP2_EXTPRI_URGENCY_LOW` is the lowest urgency level for
4307 * :macro:`NGHTTP2_EXTPRI_URGENCY_LEVELS` is the number of urgency
4320 * :member:`urgency` is the urgency of a stream, it must be in
4323 * highest urgency.
4325 uint32_t urgency; member
4938 * If :member:`extpri->urgency <nghttp2_extpri.urgency>` i
[all...]

Completed in 61 milliseconds