Home
last modified time | relevance | path

Searched refs:end_offset (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/tests/subsys/fs/multi-fs/src/
Dtest_ram_backend.c25 off_t end_offset = offset + len; in test_flash_ram_erase() local
31 while (offset < end_offset) { in test_flash_ram_erase()
/Zephyr-latest/subsys/shell/
Dshell_ops.c376 int end_offset = 0; in z_shell_print_cmd() local
382 end_offset += sh->ctx->vt100_ctx.cons.terminal_wid - adjust; in z_shell_print_cmd()
383 ch = sh->ctx->cmd_buff[end_offset]; in z_shell_print_cmd()
384 sh->ctx->cmd_buff[end_offset] = '\0'; in z_shell_print_cmd()
389 sh->ctx->cmd_buff[end_offset] = ch; in z_shell_print_cmd()
391 beg_offset = end_offset; in z_shell_print_cmd()
/Zephyr-latest/subsys/net/ip/
Dtcp.c1248 uint32_t end_offset; in tcp_check_pending_data() local
1251 end_offset = expected_seq - pending_seq; in tcp_check_pending_data()
1254 if (end_offset < pending_len) { in tcp_check_pending_data()
1255 if (end_offset) { in tcp_check_pending_data()
1256 net_pkt_remove_tail(pkt, end_offset); in tcp_check_pending_data()
1257 pending_len -= end_offset; in tcp_check_pending_data()
2628 uint32_t end_offset; in tcp_queue_recv_data() local
2632 end_offset = seq - pending_seq; in tcp_queue_recv_data()
2634 if (end_offset < pending_len) { in tcp_queue_recv_data()
2635 if (end_offset < len) { in tcp_queue_recv_data()
[all …]