/Zephyr-latest/samples/net/stats/ |
D | README.rst | 42 IPv6 recv 27 sent 8 drop 0 forwarded 0 43 IPv6 ND recv 2 sent 5 drop 2 44 IPv6 MLD recv 0 sent 3 drop 0 45 IPv4 recv 20 sent 0 drop 20 forwarded 0 48 ICMP recv 15 sent 3 drop 13 50 UDP recv 0 sent 0 drop 30 52 TCP bytes recv 0 sent 0 53 TCP seg recv 0 sent 0 drop 0 58 Bytes sent 564
|
/Zephyr-latest/samples/drivers/uart/native_tty/ |
D | README.rst | 55 Device uart sent: "Hello from device uart, num 9" 57 Device uart sent: "Hello from device uart, num 8" 59 Device uart sent: "Hello from device uart, num 7" 61 Device uart sent: "Hello from device uart, num 6" 63 Device uart sent: "Hello from device uart, num 5" 65 Device uart sent: "Hello from device uart, num 4" 67 Device uart sent: "Hello from device uart, num 3" 69 Device uart sent: "Hello from device uart, num 2" 71 Device uart sent: "Hello from device uart, num 1" 73 Device uart sent: "Hello from device uart, num 0" [all …]
|
/Zephyr-latest/samples/net/stats/src/ |
D | main.c | 37 GET_STAT(iface, ipv6.sent), in print_stats() 43 GET_STAT(iface, ipv6_nd.sent), in print_stats() 49 GET_STAT(iface, ipv6_pmtu.sent), in print_stats() 55 GET_STAT(iface, ipv6_mld.sent), in print_stats() 63 GET_STAT(iface, ipv4.sent), in print_stats() 80 GET_STAT(iface, ipv4_pmtu.sent), in print_stats() 86 GET_STAT(iface, icmp.sent), in print_stats() 95 GET_STAT(iface, udp.sent), in print_stats() 104 GET_STAT(iface, tcp.bytes.sent)); in print_stats() 107 GET_STAT(iface, tcp.sent), in print_stats() [all …]
|
/Zephyr-latest/drivers/serial/ |
D | uart_hvc_xen.c | 60 int sent = 0; in write_to_ring() local 70 while ((sent < len) && ((prod - cons) < sizeof(hvc_data->intf->out))) { in write_to_ring() 72 hvc_data->intf->out[out_idx] = str[sent]; in write_to_ring() 74 sent++; in write_to_ring() 80 if (sent) { in write_to_ring() 84 return sent; in write_to_ring() 114 int ret = 0, sent = 0; in xen_hvc_fifo_fill() local 117 sent = write_to_ring(dev, tx_data, len); in xen_hvc_fifo_fill() 119 ret += sent; in xen_hvc_fifo_fill() 120 tx_data += sent; in xen_hvc_fifo_fill() [all …]
|
/Zephyr-latest/subsys/net/lib/shell/ |
D | stats.c | 54 PR("Bytes sent : %u\n", data->bytes.sent); in print_eth_stats() 164 tc.sent[i].tx_time_detail[j].count); in get_net_pkt_tc_stats_detail() 180 tc.sent[i].tx_time_detail[j].sum) / in get_net_pkt_tc_stats_detail() 316 tc.sent[i].tx_time.count); in print_tc_tx_stats() 319 priority2str(GET_STAT(iface, tc.sent[i].priority)), in print_tc_tx_stats() 320 GET_STAT(iface, tc.sent[i].priority), in print_tc_tx_stats() 321 GET_STAT(iface, tc.sent[i].pkts), in print_tc_tx_stats() 322 GET_STAT(iface, tc.sent[i].bytes)); in print_tc_tx_stats() 325 priority2str(GET_STAT(iface, tc.sent[i].priority)), in print_tc_tx_stats() 326 GET_STAT(iface, tc.sent[i].priority), in print_tc_tx_stats() [all …]
|
/Zephyr-latest/tests/subsys/zbus/user_data/src/ |
D | main.c | 89 struct foo_msg sent = {.a = 10, .b = 1000}; in ZTEST() local 91 zbus_chan_pub(®ular_chan, &sent, K_MSEC(100)); in ZTEST() 97 zassert_equal(sent.a, received.a, NULL); in ZTEST() 99 zassert_equal(sent.b, received.b, NULL); in ZTEST()
|
/Zephyr-latest/drivers/usb/common/nrf_usbd_common/ |
D | Kconfig | 19 data is ready to be sent. When enabled, ZLP is sent when no data is 20 ready. When disabled, no response is sent (bus timeout occurs).
|
/Zephyr-latest/subsys/net/ip/ |
D | net_stats.c | 90 GET_STAT(iface, ipv6.sent), in stats() 96 GET_STAT(iface, ipv6_nd.sent), in stats() 102 GET_STAT(iface, ipv6_pmtu.sent), in stats() 108 GET_STAT(iface, ipv6_mld.sent), in stats() 116 GET_STAT(iface, ipv4.sent), in stats() 133 GET_STAT(iface, ipv4_pmtu.sent), in stats() 139 GET_STAT(iface, icmp.sent), in stats() 148 GET_STAT(iface, udp.sent), in stats() 157 GET_STAT(iface, tcp.bytes.sent)); in stats() 160 GET_STAT(iface, tcp.sent), in stats() [all …]
|
D | net_stats.h | 60 UPDATE_STAT(iface, stats.bytes.sent += bytes); in net_stats_update_bytes_sent() 75 UPDATE_STAT(iface, stats.ipv6.sent++); in net_stats_update_ipv6_sent() 98 UPDATE_STAT(iface, stats.ipv6_nd.sent++); in net_stats_update_ipv6_nd_sent() 121 UPDATE_STAT(iface, stats.ipv6_pmtu.sent++); in net_stats_update_ipv6_pmtu_sent() 144 UPDATE_STAT(iface, stats.ipv4_pmtu.sent++); in net_stats_update_ipv4_pmtu_sent() 172 UPDATE_STAT(iface, stats.ipv4.sent++); in net_stats_update_ipv4_sent() 189 UPDATE_STAT(iface, stats.icmp.sent++); in net_stats_update_icmp_sent() 211 UPDATE_STAT(iface, stats.udp.sent++); in net_stats_update_udp_sent() 239 UPDATE_STAT(iface, stats.tcp.bytes.sent += bytes); in net_stats_update_tcp_sent() 260 UPDATE_STAT(iface, stats.tcp.sent++); in net_stats_update_tcp_seg_sent() [all …]
|
/Zephyr-latest/samples/net/sockets/packet/ |
D | Kconfig | 9 int "Wait time between sent packets (in ms)" 13 If set to 0, then the packets are sent as fast as possible, which 22 and insert Ethernet header to sent packets.
|
/Zephyr-latest/samples/drivers/lora/send/ |
D | README.rst | 35 [00:00:00.531,000] <inf> lora_send: Data sent! 36 [00:00:01.828,000] <inf> lora_send: Data sent! 37 [00:00:03.125,000] <inf> lora_send: Data sent!
|
/Zephyr-latest/include/zephyr/net/ |
D | net_stats.h | 52 net_stats_t sent; member 75 net_stats_t sent; member 119 net_stats_t sent; member 148 net_stats_t sent; member 188 net_stats_t sent; member 205 net_stats_t sent; member 219 net_stats_t sent; member 233 net_stats_t sent; member 244 net_stats_t sent; member 258 net_stats_t sent; member [all …]
|
/Zephyr-latest/tests/subsys/zbus/integration/src/ |
D | main.c | 295 struct action_msg sent = {.status = true}; in ZTEST() local 310 err = zbus_chan_pub(&busy_chan, &sent, K_MSEC(200)); in ZTEST() 316 err = zbus_chan_pub(&busy_chan, &sent, K_MSEC(200)); in ZTEST() 319 err = zbus_chan_pub(&busy_chan, &sent, K_MSEC(2000)); in ZTEST() 329 struct action_msg sent = {.status = true}; in ZTEST() local 334 int err = zbus_chan_pub(&start_measurement_chan, &sent, K_MSEC(100)); in ZTEST() 338 sent.status = false; in ZTEST() 339 err = zbus_chan_pub(&start_measurement_chan, &sent, K_MSEC(100)); in ZTEST() 342 err = zbus_chan_pub(&start_measurement_chan, &sent, K_MSEC(100)); in ZTEST()
|
/Zephyr-latest/tests/bluetooth/audio/mocks/src/ |
D | iso.c | 26 if (chan->ops != NULL && chan->ops->sent != NULL) { in bt_iso_chan_send() 27 chan->ops->sent(chan); in bt_iso_chan_send() 36 if (chan->ops != NULL && chan->ops->sent != NULL) { in bt_iso_chan_send_ts() 37 chan->ops->sent(chan); in bt_iso_chan_send_ts()
|
/Zephyr-latest/subsys/net/lib/capture/ |
D | Kconfig | 16 The captured packets are sent to another host for processing. 19 The captured network packets are sent using IPIP tunnel 29 network traffic. Each network frame sent or received 104 bool "Debug sent packets" 107 Enables printing of sent network packet.
|
/Zephyr-latest/subsys/net/l2/virtual/ipip/ |
D | Kconfig | 30 bool "Debug received and sent packets" 33 Enables printing of received and sent network packets.
|
/Zephyr-latest/samples/net/sockets/http_server/src/ |
D | ws.c | 230 bytes_sent = data.bytes.sent; in netstats_collect() 233 ipv6_sent = data.ipv6.sent; in netstats_collect() 237 ipv4_sent = data.ipv4.sent; in netstats_collect() 241 tcp_sent = data.tcp.bytes.sent; in netstats_collect()
|
/Zephyr-latest/tests/subsys/mgmt/ec_host_cmd/simulator/src/ |
D | main.c | 13 struct ec_host_cmd_tx_buf *sent; variable 124 zassert_equal(sent->len, expected_tx_size(), "Sent bytes did not match"); in verify_tx_data() 125 zassert_mem_equal(sent->buf, expected_dut_to_host, expected_tx_size(), in verify_tx_data() 137 zassert_equal(sent->len, expected_tx_size(), "Sent bytes did not match"); in verify_tx_error() 138 zassert_mem_equal(sent->buf, expected_dut_to_host, expected_tx_size(), in verify_tx_error() 439 ec_host_cmd_backend_sim_install_send_cb(host_send, &sent); in ec_host_cmd_tests_setup()
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | op_agg_srv.rst | 20 to encrypt the sequence of access layer messages sent to the Opcodes Aggregator Server. 24 responses are sent from the same execution context as the received message and
|
/Zephyr-latest/drivers/ethernet/ |
D | Kconfig.e1000 | 24 bool "Hexdump of the received and sent frames" 26 Enabling this will turn on the hexdump of the received and sent
|
/Zephyr-latest/tests/subsys/sip_svc/ |
D | Kconfig | 12 Number of SYNC and ASYNC packets to be sent per iteration
|
/Zephyr-latest/doc/connectivity/bluetooth/api/ |
D | hci_raw.rst | 13 are sent and received by the Bluetooth HCI driver.
|
/Zephyr-latest/tests/net/socket/udp/src/ |
D | main.c | 67 ssize_t sent = 0; in comm_sendto_recvfrom() local 81 sent = zsock_sendto(client_sock, TEST_STR_SMALL, strlen(TEST_STR_SMALL), in comm_sendto_recvfrom() 83 zassert_equal(sent, strlen(TEST_STR_SMALL), "sendto failed"); in comm_sendto_recvfrom() 124 sent = zsock_sendto(server_sock, TEST_STR2, sizeof(TEST_STR2) - 1, in comm_sendto_recvfrom() 126 zassert_equal(sent, STRLEN(TEST_STR2), "sendto failed"); in comm_sendto_recvfrom() 147 sent = zsock_sendto(server_sock, TEST_STR2, sizeof(TEST_STR2) - 1, in comm_sendto_recvfrom() 149 zassert_equal(sent, STRLEN(TEST_STR2), "sendto failed"); in comm_sendto_recvfrom() 150 sent = zsock_sendto(server_sock, TEST_STR_SMALL, sizeof(TEST_STR_SMALL) - 1, in comm_sendto_recvfrom() 152 zassert_equal(sent, STRLEN(TEST_STR_SMALL), "sendto failed"); in comm_sendto_recvfrom() 365 ssize_t sent; in comm_sendmsg_recvfrom() local [all …]
|
/Zephyr-latest/drivers/mipi_dbi/ |
D | Kconfig.nxp_lcdic | 20 Commands will still be sent in polling mode.
|
/Zephyr-latest/subsys/mgmt/osdp/src/ |
D | osdp.c | 107 int sent = 0; in osdp_uart_send() local 110 sent = (int)ring_buf_put(&p->tx_buf, buf, len); in osdp_uart_send() 112 return sent; in osdp_uart_send()
|