/Zephyr-Core-3.5.0/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-Core-3.5.0/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-Core-3.5.0/drivers/serial/ |
D | uart_hvc_xen.c | 58 int sent = 0; in write_to_ring() local 68 while ((sent < len) && ((prod - cons) < sizeof(hvc_data->intf->out))) { in write_to_ring() 70 hvc_data->intf->out[out_idx] = str[sent]; in write_to_ring() 72 sent++; in write_to_ring() 78 if (sent) { in write_to_ring() 82 return sent; in write_to_ring() 112 int ret = 0, sent = 0; in xen_hvc_fifo_fill() local 115 sent = write_to_ring(dev, tx_data, len); in xen_hvc_fifo_fill() 117 ret += sent; in xen_hvc_fifo_fill() 118 tx_data += sent; in xen_hvc_fifo_fill() [all …]
|
/Zephyr-Core-3.5.0/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_mld.sent), in print_stats() 57 GET_STAT(iface, ipv4.sent), in print_stats() 73 GET_STAT(iface, icmp.sent), in print_stats() 82 GET_STAT(iface, udp.sent), in print_stats() 91 GET_STAT(iface, tcp.bytes.sent)); in print_stats() 94 GET_STAT(iface, tcp.sent), in print_stats() 110 printk("Bytes sent %u\n", GET_STAT(iface, bytes.sent)); in print_stats() 132 printk("Bytes sent : %u\n", data->bytes.sent); in print_eth_stats()
|
/Zephyr-Core-3.5.0/subsys/net/ip/ |
D | net_stats.c | 85 GET_STAT(iface, ipv6.sent), in stats() 91 GET_STAT(iface, ipv6_nd.sent), in stats() 97 GET_STAT(iface, ipv6_mld.sent), in stats() 105 GET_STAT(iface, ipv4.sent), in stats() 121 GET_STAT(iface, icmp.sent), in stats() 130 GET_STAT(iface, udp.sent), in stats() 139 GET_STAT(iface, tcp.bytes.sent)); in stats() 142 GET_STAT(iface, tcp.sent), in stats() 158 NET_INFO("Bytes sent %u", GET_STAT(iface, bytes.sent)); in stats() 170 tc.sent[i].priority)), 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() 126 UPDATE_STAT(iface, stats.ipv4.sent++); in net_stats_update_ipv4_sent() 143 UPDATE_STAT(iface, stats.icmp.sent++); in net_stats_update_icmp_sent() 165 UPDATE_STAT(iface, stats.udp.sent++); in net_stats_update_udp_sent() 193 UPDATE_STAT(iface, stats.tcp.bytes.sent += bytes); in net_stats_update_tcp_sent() 214 UPDATE_STAT(iface, stats.tcp.sent++); in net_stats_update_tcp_seg_sent() 314 UPDATE_STAT(iface, stats.ipv6_mld.sent++); in net_stats_update_ipv6_mld_sent() 335 UPDATE_STAT(iface, stats.ipv4_igmp.sent++); in net_stats_update_ipv4_igmp_sent() [all …]
|
/Zephyr-Core-3.5.0/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-Core-3.5.0/include/zephyr/net/ |
D | net_stats.h | 43 net_stats_t sent; member 66 net_stats_t sent; member 110 net_stats_t sent; member 139 net_stats_t sent; member 179 net_stats_t sent; member 191 net_stats_t sent; member 202 net_stats_t sent; member 216 net_stats_t sent; member 263 } sent[NET_TC_TX_STATS_COUNT]; member
|
/Zephyr-Core-3.5.0/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-Core-3.5.0/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 56 bool "Debug sent packets" 59 Enables printing of sent network packet.
|
/Zephyr-Core-3.5.0/tests/subsys/zbus/integration/src/ |
D | main.c | 296 struct action_msg sent = {.status = true}; in ZTEST() local 311 err = zbus_chan_pub(&busy_chan, &sent, K_MSEC(200)); in ZTEST() 317 err = zbus_chan_pub(&busy_chan, &sent, K_MSEC(200)); in ZTEST() 320 err = zbus_chan_pub(&busy_chan, &sent, K_MSEC(2000)); in ZTEST() 330 struct action_msg sent = {.status = true}; in ZTEST() local 335 int err = zbus_chan_pub(&start_measurement_chan, &sent, K_MSEC(100)); in ZTEST() 339 sent.status = false; in ZTEST() 340 err = zbus_chan_pub(&start_measurement_chan, &sent, K_MSEC(100)); in ZTEST() 343 err = zbus_chan_pub(&start_measurement_chan, &sent, K_MSEC(100)); in ZTEST()
|
/Zephyr-Core-3.5.0/tests/net/socket/udp/src/ |
D | main.c | 62 ssize_t sent = 0; in comm_sendto_recvfrom() local 76 sent = sendto(client_sock, TEST_STR_SMALL, strlen(TEST_STR_SMALL), in comm_sendto_recvfrom() 78 zassert_equal(sent, strlen(TEST_STR_SMALL), "sendto failed"); in comm_sendto_recvfrom() 119 sent = sendto(server_sock, BUF_AND_SIZE(TEST_STR2), in comm_sendto_recvfrom() 121 zassert_equal(sent, STRLEN(TEST_STR2), "sendto failed"); in comm_sendto_recvfrom() 142 sent = sendto(server_sock, BUF_AND_SIZE(TEST_STR2), in comm_sendto_recvfrom() 144 zassert_equal(sent, STRLEN(TEST_STR2), "sendto failed"); in comm_sendto_recvfrom() 145 sent = sendto(server_sock, BUF_AND_SIZE(TEST_STR_SMALL), in comm_sendto_recvfrom() 147 zassert_equal(sent, STRLEN(TEST_STR_SMALL), "sendto failed"); in comm_sendto_recvfrom() 360 ssize_t sent; in comm_sendmsg_recvfrom() local [all …]
|
/Zephyr-Core-3.5.0/subsys/net/l2/virtual/ipip/ |
D | Kconfig | 30 bool "Debug received and sent packets" 33 Enables printing of received and sent network packets.
|
/Zephyr-Core-3.5.0/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-Core-3.5.0/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-Core-3.5.0/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-Core-3.5.0/tests/subsys/sip_svc/ |
D | Kconfig | 12 Number of SYNC and ASYNC packets to be sent per iteration
|
/Zephyr-Core-3.5.0/subsys/bluetooth/audio/ |
D | cap_stream.c | 179 if (ops != NULL && ops->sent != NULL) { in cap_stream_sent_cb() 180 ops->sent(bap_stream); in cap_stream_sent_cb() 200 .sent = cap_stream_sent_cb,
|
/Zephyr-Core-3.5.0/doc/connectivity/bluetooth/api/ |
D | hci_raw.rst | 13 are sent and received by the Bluetooth HCI driver.
|
/Zephyr-Core-3.5.0/tests/bluetooth/audio/mocks/src/ |
D | iso.c | 23 if (chan->ops != NULL && chan->ops->sent != NULL) { in bt_iso_chan_send() 24 chan->ops->sent(chan); in bt_iso_chan_send()
|
/Zephyr-Core-3.5.0/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()
|
/Zephyr-Core-3.5.0/doc/connectivity/networking/ |
D | net_pkt_processing_stats.rst | 34 when it was sent to the network. The RX time tells the time from its creation 64 * The network packet was just sent and the network stack is about to free the 67 sent. The value **63** tells also the same information, but is calculated 83 sent. The value **42** tells also the same information, but is calculated
|
/Zephyr-Core-3.5.0/samples/net/capture/ |
D | README.rst | 13 The captured packets are sent to 17 then the remote host where the captured packets are sent can also be reached 143 Next the monitoring is setup so that captured packets are sent as a payload 168 The tunneling interface will be UP and the captured packets will be sent to 201 You should see a ICMPv4 message sent to ``192.0.2.2`` and also the captured 202 packet will be sent to ``192.0.2.2`` in tunnel to ``2001:db8:200::2``
|
/Zephyr-Core-3.5.0/samples/subsys/usb/cdc_acm_composite/ |
D | README.rst | 15 Received data from one serial port is sent to another serial port 63 The characters entered in one serial port will be sent to another
|
/Zephyr-Core-3.5.0/subsys/lorawan/nvm/ |
D | Kconfig | 16 a OTAA join request is sent. This value should be used in the
|