Home
last modified time | relevance | path

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

/Zephyr-latest/subsys/net/lib/http/
Dhttp_server_http2.c1731 int bytes_consumed; in handle_http_frame_settings() local
1739 bytes_consumed = client->current_frame.length; in handle_http_frame_settings()
1740 client->data_len -= bytes_consumed; in handle_http_frame_settings()
1741 client->cursor += bytes_consumed; in handle_http_frame_settings()
1761 int bytes_consumed; in handle_http_frame_goaway() local
1769 bytes_consumed = client->current_frame.length; in handle_http_frame_goaway()
1770 client->data_len -= bytes_consumed; in handle_http_frame_goaway()
1771 client->cursor += bytes_consumed; in handle_http_frame_goaway()
1781 int bytes_consumed; in handle_http_frame_window_update() local
1791 bytes_consumed = client->current_frame.length; in handle_http_frame_window_update()
[all …]
/Zephyr-latest/tests/net/lib/mqtt/v3_1_1/mqtt_client/src/
Dmain.c325 size_t bytes_consumed = 0; in broker_receive() local
362 bytes_consumed += buf.cur - broker_buf; in broker_receive()
363 bytes_consumed += length; in broker_receive()
373 broker_offset -= bytes_consumed; in broker_receive()
375 memmove(broker_buf, broker_buf + bytes_consumed, in broker_receive()