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.c1629 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()
[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()