Lines Matching refs:bytes_consumed
1629 int bytes_consumed; in handle_http_frame_settings() local
1637 bytes_consumed = client->current_frame.length; in handle_http_frame_settings()
1638 client->data_len -= bytes_consumed; in handle_http_frame_settings()
1639 client->cursor += bytes_consumed; in handle_http_frame_settings()
1659 int bytes_consumed; in handle_http_frame_goaway() local
1667 bytes_consumed = client->current_frame.length; in handle_http_frame_goaway()
1668 client->data_len -= bytes_consumed; in handle_http_frame_goaway()
1669 client->cursor += bytes_consumed; in handle_http_frame_goaway()
1679 int bytes_consumed; in handle_http_frame_window_update() local
1689 bytes_consumed = client->current_frame.length; in handle_http_frame_window_update()
1690 client->data_len -= bytes_consumed; in handle_http_frame_window_update()
1691 client->cursor += bytes_consumed; in handle_http_frame_window_update()
1709 size_t bytes_consumed; in handle_http_frame_padding() local
1715 bytes_consumed = MIN(client->data_len, frame->padding_len); in handle_http_frame_padding()
1716 client->data_len -= bytes_consumed; in handle_http_frame_padding()
1717 client->cursor += bytes_consumed; in handle_http_frame_padding()
1718 frame->padding_len -= bytes_consumed; in handle_http_frame_padding()