| /subsys/net/lib/shell/ |
| A D | stats.c | 316 tc.sent[i].tx_time.count); in print_tc_tx_stats() 330 tc.sent[i].tx_time.sum) / in print_tc_tx_stats() 464 GET_STAT(iface, ipv6.sent), in net_shell_print_statistics() 470 GET_STAT(iface, ipv6_nd.sent), in net_shell_print_statistics() 476 GET_STAT(iface, ipv6_pmtu.sent), in net_shell_print_statistics() 482 GET_STAT(iface, ipv6_mld.sent), in net_shell_print_statistics() 490 GET_STAT(iface, ipv4.sent), in net_shell_print_statistics() 514 GET_STAT(iface, icmp.sent), in net_shell_print_statistics() 529 GET_STAT(iface, udp.sent), in net_shell_print_statistics() 542 GET_STAT(iface, tcp.sent), in net_shell_print_statistics() [all …]
|
| /subsys/net/ip/ |
| A 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 …]
|
| A D | net_stats.h | 60 UPDATE_STAT(iface, stats.bytes.sent += bytes); in net_stats_update_bytes_sent() 119 UPDATE_STAT(iface, stats.ipv6.sent++); in net_stats_update_ipv6_sent() 142 UPDATE_STAT(iface, stats.ipv6_nd.sent++); in net_stats_update_ipv6_nd_sent() 165 UPDATE_STAT(iface, stats.ipv6_pmtu.sent++); in net_stats_update_ipv6_pmtu_sent() 188 UPDATE_STAT(iface, stats.ipv4_pmtu.sent++); in net_stats_update_ipv4_pmtu_sent() 216 UPDATE_STAT(iface, stats.ipv4.sent++); in net_stats_update_ipv4_sent() 233 UPDATE_STAT(iface, stats.icmp.sent++); in net_stats_update_icmp_sent() 255 UPDATE_STAT(iface, stats.udp.sent++); in net_stats_update_udp_sent() 304 UPDATE_STAT(iface, stats.tcp.sent++); in net_stats_update_tcp_seg_sent() 404 UPDATE_STAT(iface, stats.ipv6_mld.sent++); in net_stats_update_ipv6_mld_sent() [all …]
|
| A D | Kconfig.ipv4 | 77 bool "Control whether the socket sees multicast packets sent by itself" 90 If set, then respond to ICMPv4 echo-request that is sent to 106 because IP Router Alert option must be sent.
|
| /subsys/logging/backends/ |
| A D | log_backend_ws.c | 110 int sent = 0; in line_out() local 122 sent++; in line_out() 130 if (sent > 0) { in line_out() 131 length = sent; in line_out()
|
| A D | Kconfig.ws | 19 Maximum size of the output string that is sent via websocket.
|
| /subsys/net/lib/capture/ |
| A 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.
|
| /subsys/net/l2/virtual/ipip/ |
| A D | Kconfig | 30 bool "Debug received and sent packets" 33 Enables printing of received and sent network packets.
|
| /subsys/mgmt/osdp/src/ |
| A 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()
|
| /subsys/net/l2/ethernet/ |
| A D | Kconfig | 62 bool "Debug received and sent packets in VLAN" 65 Enables printing of received and sent network packets. 156 bool "Debug received and sent packets in bridge" 159 Enables printing of received and sent network packets.
|
| /subsys/bluetooth/audio/ |
| A D | cap_stream.c | 230 if (ops != NULL && ops->sent != NULL) { in cap_stream_sent_cb() 231 ops->sent(bap_stream); in cap_stream_sent_cb() 278 .sent = cap_stream_sent_cb,
|
| /subsys/lorawan/nvm/ |
| A D | Kconfig | 16 a OTAA join request is sent. This value should be used in the
|
| /subsys/mgmt/osdp/ |
| A D | Kconfig | 57 bool "Print bytes sent/received over OSDP to console" 59 Prints bytes sent/received over OSDP to console for debugging.
|
| A D | Kconfig.cp | 43 defined the number of times such a POLL command is sent per second.
|
| /subsys/mgmt/mcumgr/transport/ |
| A D | Kconfig.dummy | 27 line sent by an mcumgr client.
|
| A D | Kconfig.shell | 27 Maximum size of SMP frames sent and received over shell. This value
|
| A D | Kconfig.uart | 59 Maximum size of SMP frames sent and received over UART, in bytes.
|
| /subsys/mgmt/mcumgr/transport/src/ |
| A D | smp_bt.c | 459 bool sent = false; in smp_bt_tx_pkt() local 525 if (sent == false) { in smp_bt_tx_pkt() 550 sent = true; in smp_bt_tx_pkt()
|
| /subsys/net/l2/ppp/ |
| A D | ppp_stats.h | 51 stats->bytes.sent += bytes; in ppp_stats_update_bytes_tx()
|
| /subsys/net/lib/sockets/ |
| A D | sockets_tls.c | 860 ssize_t sent; in dtls_tx() local 865 if (sent < 0) { in dtls_tx() 873 return sent; in dtls_tx() 922 ssize_t sent; in tls_tx() local 924 sent = zsock_sendto(tls_ctx->sock, buf, len, in tls_tx() 926 if (sent < 0) { in tls_tx() 934 return sent; in tls_tx() 2570 size_t sent = 0; in tls_sendmsg_loop_and_send() local 2576 while (sent < vec->iov_len) { in tls_sendmsg_loop_and_send() 2585 sent += ret; in tls_sendmsg_loop_and_send() [all …]
|
| /subsys/net/l2/ethernet/gptp/ |
| A D | Kconfig | 133 Defines the interval at which a Path Delay Request will be sent. 141 Defines the interval at which a Sync message will be sent. 149 Defines the interval at which an Announce message will be sent.
|
| /subsys/bluetooth/mesh/ |
| A D | subnet.h | 40 uint32_t sent; /* Timestamp of last sent beacon */ member
|
| /subsys/bluetooth/common/ |
| A D | Kconfig | 15 Maximum supported ACL size of data packets sent from the Host to the 41 Number of outgoing ACL data buffers sent from the Host to the 68 Maximum support ACL size of data packets sent from the Controller to 95 Number of incoming extra ACL data buffers sent from the Controller to 110 Number or incoming ACL data buffers sent from the Controller to the 165 expected HCI commands that can be sent from the configuration.
|
| /subsys/lorawan/services/ |
| A D | Kconfig | 150 sent by the server after all packages have been sent.
|
| /subsys/bluetooth/controller/ll_sw/ |
| A D | ull_conn_types.h | 76 uint8_t sent; member
|