Home
last modified time | relevance | path

Searched refs:window_delta (Results 1 – 2 of 2) sorted by relevance

/third_party/grpc/src/core/ext/transport/chttp2/transport/
Dframe_window_update.cc31 uint32_t id, uint32_t window_delta, grpc_transport_one_way_stats* stats) { in grpc_chttp2_window_update_create() argument
37 GPR_ASSERT(window_delta); in grpc_chttp2_window_update_create()
48 *p++ = static_cast<uint8_t>(window_delta >> 24); in grpc_chttp2_window_update_create()
49 *p++ = static_cast<uint8_t>(window_delta >> 16); in grpc_chttp2_window_update_create()
50 *p++ = static_cast<uint8_t>(window_delta >> 8); in grpc_chttp2_window_update_create()
51 *p++ = static_cast<uint8_t>(window_delta); in grpc_chttp2_window_update_create()
Dframe_window_update.h34 uint32_t id, uint32_t window_delta, grpc_transport_one_way_stats* stats);