Lines Matching defs:size
2109 /* Take into account settings max frame size and both connection-level
2130 * settings for max frame size is also taken into account.
3725 * Handles frame size error.
4542 /* If window size gets positive, push deferred DATA frame to
4558 * Updates the remote initial window size of all active streams. If
4617 * Updates the local initial window size of all active streams. If
4647 * The header table size is out of range
4824 /* Update the initial window size of the all active streams */
5459 * current received window size + delta length is strictly larger than
5460 * local window size, it is subject to FLOW_CONTROL_ERROR, so return
5931 session, NGHTTP2_FRAME_SIZE_ERROR, "too large frame size");
6134 minimum header table size. */
7685 buffer size is for possible padding field. */
7705 /* Current max DATA length is less then buffer chunk size */
7888 int32_t size;
7894 size = stream->local_window_size - stream->recv_window_size;
7896 /* size could be negative if local endpoint reduced
7898 if (size < 0) {
7902 return size;
8136 size_t size) {
8148 rv = session_update_connection_consumed_size(session, size);
8160 rv = session_update_stream_consumed_size(session, stream, size);
8169 int nghttp2_session_consume_connection(nghttp2_session *session, size_t size) {
8176 rv = session_update_connection_consumed_size(session, size);
8186 size_t size) {
8204 rv = session_update_stream_consumed_size(session, stream, size);