Home
last modified time | relevance | path

Searched refs:out_packets (Results 1 – 25 of 53) sorted by relevance

123

/dports/security/tinc-devel/tinc-1.1pre18/src/
H A Dtop.c39 uint64_t out_packets; member
87 uint64_t out_packets; in update() local
95 …%"PRIu64" %"PRIu64" %"PRIu64, &code, &req, name, &in_packets, &in_bytes, &out_packets, &out_bytes); in update()
136 found->out_packets_rate = (out_packets - found->out_packets) / interval; in update()
140 found->out_packets = out_packets; in update()
193 result = -cmpu64(na->out_packets, nb->out_packets); in sortfunc()
211 result = -cmpu64(na->in_packets + na->out_packets, nb->in_packets + nb->out_packets); in sortfunc()
283 …node->name, node->in_packets * pscale, node->in_bytes * bscale, node->out_packets * pscale, node->… in redraw()
H A Dinfo.c78 uint64_t in_packets, in_bytes, out_packets, out_bytes; in info_node() local
81 …mtu, &maxmtu, &last_state_change, &udp_ping_rtt, &in_packets, &in_bytes, &out_packets, &out_bytes); in info_node()
199 printf("TX: %"PRIu64" packets %"PRIu64" bytes\n", out_packets, out_bytes); in info_node()
H A Dnode.c217 n->in_packets, n->in_bytes, n->out_packets, n->out_bytes); in dump_nodes()
226 n->name, n->in_packets, n->in_bytes, n->out_packets, n->out_bytes); in dump_traffic()
H A Dnode.h113 uint64_t out_packets; member
/dports/audio/spotify-tui/spotify-tui-0.25.0/cargo-crates/x11rb-0.8.1/src/rust_connection/
H A Dpacket_reader.rs35 fn handle_partial_read(&mut self, nread: usize, out_packets: &mut Vec<Vec<u8>>) { in handle_partial_read()
54 out_packets.push(std::mem::replace( in handle_partial_read()
66 out_packets: &mut Vec<Vec<u8>>, in try_read_packets()
80 Ok(nread) => self.handle_partial_read(nread, out_packets), in try_read_packets()
103 self.handle_partial_read(to_copy, out_packets); in try_read_packets()
/dports/x11/inputplug/inputplug-0.4.0/cargo-crates/x11rb-0.8.1/src/rust_connection/
H A Dpacket_reader.rs35 fn handle_partial_read(&mut self, nread: usize, out_packets: &mut Vec<Vec<u8>>) { in handle_partial_read()
54 out_packets.push(std::mem::replace( in handle_partial_read()
66 out_packets: &mut Vec<Vec<u8>>, in try_read_packets()
80 Ok(nread) => self.handle_partial_read(nread, out_packets), in try_read_packets()
103 self.handle_partial_read(to_copy, out_packets); in try_read_packets()
/dports/x11/lxpanel/lxpanel-0.9.3/plugins/netstatus/
H A Dnetstatus-sysdeps.c53 gulong *out_packets, in parse_stats() argument
68 *out_packets = g_ascii_strtoull (p, NULL, 10); in parse_stats()
157 gulong *out_packets, in netstatus_sysdeps_read_iface_statistics() argument
169 g_return_val_if_fail (out_packets != NULL, NULL); in netstatus_sysdeps_read_iface_statistics()
174 *out_packets = -1; in netstatus_sysdeps_read_iface_statistics()
213 prx_idx, ptx_idx, in_packets, out_packets, in netstatus_sysdeps_read_iface_statistics()
575 gulong *out_packets, in netstatus_sysdeps_read_iface_statistics() argument
587 g_return_val_if_fail (out_packets != NULL, NULL); in netstatus_sysdeps_read_iface_statistics()
592 *out_packets = -1; in netstatus_sysdeps_read_iface_statistics()
644 prx_idx, ptx_idx, in_packets, out_packets, in netstatus_sysdeps_read_iface_statistics()
[all …]
H A Dnetstatus-iface.c456 gulong *out_packets, in netstatus_iface_poll_iface_statistics() argument
464 out_packets, in netstatus_iface_poll_iface_statistics()
489 gulong in_packets, out_packets; in netstatus_iface_poll_state() local
516 …if (!netstatus_iface_poll_iface_statistics (iface, &in_packets, &out_packets, &in_bytes, &out_byte… in netstatus_iface_poll_state()
520 in_packets, out_packets, in netstatus_iface_poll_state()
521 iface->priv->stats.in_packets, iface->priv->stats.out_packets); in netstatus_iface_poll_state()
527 tx = out_packets > iface->priv->stats.out_packets; in netstatus_iface_poll_state()
543 iface->priv->stats.out_packets = out_packets; in netstatus_iface_poll_state()
654 iface->priv->stats.out_packets = 0; in netstatus_iface_init_monitor()
H A Dnetstatus-sysdeps.h34 gulong *out_packets,
H A Dnetstatus-util.h66 gulong out_packets; member
/dports/x11/lxpanel/lxpanel-0.9.3/plugins/netstat/
H A Ddevproc.c177 gulong *out_packets, in netproc_parse_status() argument
190 *out_packets = g_ascii_strtoull(ptr, NULL, 10); in netproc_parse_status()
218 gulong in_packets, out_packets, in_bytes, out_bytes; in netproc_scandevice() local
246 in_packets = out_packets = in_bytes = out_bytes = 0L; in netproc_scandevice()
248 netproc_parse_status(status, prx_idx, ptx_idx, &in_packets, &out_packets, in netproc_scandevice()
267 netproc_netdevlist_add(netdev_list, name, in_bytes, in_packets, out_bytes, out_packets, FALSE); in netproc_scandevice()
269 netproc_netdevlist_add(netdev_list, name, in_bytes, in_packets, out_bytes, out_packets, TRUE); in netproc_scandevice()
283 if (devptr->info.recv_packets!=in_packets&&devptr->info.trans_packets!=out_packets) { in netproc_scandevice()
293 } else if (devptr->info.trans_packets!=out_packets) { in netproc_scandevice()
309 devptr->info.trans_packets = out_packets; in netproc_scandevice()
/dports/x11/fbpanel/fbpanel-6.1/plugins/net/
H A Dnet.c124 gulong * out_packets, in parse_stats() argument
138 *out_packets = g_ascii_strtoull(p, NULL, 10); in parse_stats()
188 gulong out_packets = -1; in net_get_load() local
240 prx_idx, ptx_idx, &in_packets, &out_packets, in net_get_load()
247 } else if (in_packets == -1 || out_packets == -1 || in_bytes == -1 || out_bytes == -1) { in net_get_load()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/perfetto/src/perfetto_cmd/
H A Dpacket_writer.cc222 std::vector<TracePacket> out_packets(1); in FinalizeCompressedPacket() local
223 TracePacket& out_packet = out_packets[0]; in FinalizeCompressedPacket()
227 if (!writer_->WritePackets(out_packets)) in FinalizeCompressedPacket()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/perfetto/src/perfetto_cmd/
H A Dpacket_writer.cc224 std::vector<TracePacket> out_packets(1); in FinalizeCompressedPacket() local
225 TracePacket& out_packet = out_packets[0]; in FinalizeCompressedPacket()
229 if (!writer_->WritePackets(out_packets)) in FinalizeCompressedPacket()
/dports/net-mgmt/fastnetmon/fastnetmon-1.1.4/src/tests/
H A Dlpm_performance_tests.cpp23 : in_bytes(0), out_bytes(0), in_packets(0), out_packets(0), tcp_in_packets(0), in map_element()
31 unsigned int out_packets; member in map_element
/dports/sysutils/moreutils/moreutils-0.66/
H A Difdata.c75 unsigned long long out_bytes, out_packets, out_errors, out_drops; member
299 &ifstat->out_bytes, &ifstat->out_packets, in get_stats()
480 printf("%llu",ifstats->out_packets); in please_do()
516 ifstats->out_bytes, ifstats->out_packets, in please_do()
/dports/net-mgmt/fastnetmon/fastnetmon-1.1.4/src/
H A Dfastnetmon.cpp602 return a.second.out_packets > b.second.out_packets; in operator ()()
854 pps = current_speed_element->out_packets; in draw_table()
897 pps = current_speed_element->out_packets; in draw_table()
2254 … new_speed_element.out_packets = uint64_t((double)subnet_traffic->out_packets / speed_calc_period); in recalculate_speed()
2273 current_average_speed_element->out_packets = uint64_t(new_speed_element.out_packets + in recalculate_speed()
2274 …e_subnet * ((double)current_average_speed_element->out_packets - (double)new_speed_element.out_pac… in recalculate_speed()
3119 uint64_t out_pps = average_speed_element.out_packets; in execute_ip_ban()
3211 current_attack.out_packets = out_pps; in execute_ip_ban()
4501 new_speed_element.out_packets = uint64_t((double)vector_itr->out_packets / speed_calc_period); in build_speed_counters_from_packet_counters()
4577 new_speed_element.out_packets + in build_average_speed_counters_from_speed_counters()
[all …]
H A Dfast_library.cpp1028 …object_object_add(jobj, "total_outgoing_pps", json_object_new_int(current_attack.out_packets)); in serialize_attack_description_to_json()
1084 << "Total outgoing pps: " << current_attack.out_packets << " packets per second\n" in serialize_attack_description()
1144 if (current_attack.tcp_syn_out_packets > threshold_value * current_attack.out_packets) { in detect_attack_type()
1146 } else if (current_attack.icmp_out_packets > threshold_value * current_attack.out_packets) { in detect_attack_type()
1148 … } else if (current_attack.fragmented_out_packets > threshold_value * current_attack.out_packets) { in detect_attack_type()
1150 } else if (current_attack.udp_out_packets > threshold_value * current_attack.out_packets) { in detect_attack_type()
1187 … << prefix << " outgoing pps: "<< network_speed_meter.out_packets << " packets per second\n"; in serialize_network_load_to_text()
1198 …_object_object_add(jobj, "outgoing pps", json_object_new_int(network_speed_meter.out_packets)); in serialize_network_load_to_json()
H A Dfastnetmon_types.h106 … : in_bytes(0), out_bytes(0), in_packets(0), out_packets(0), tcp_in_packets(0), tcp_out_packets(0), in map_element()
116 uint64_t out_packets; variable
/dports/net/samplicator/samplicator-1.3.8rc1/
H A Dsamplicator.h51 uint32_t out_packets; member
/dports/shells/ksh93/ast-93u/src/cmd/dsslib/netflow/
H A Dnetflow.c436 r->value.number = rp->out_packets ? rp->out_packets : rp->packets; in op_get()
445 r->value.number = rp->packets ? rp->packets : rp->out_packets ? rp->out_packets : rp->in_packets; in op_get()
712 NUMBER(out_packets, 0),
/dports/shells/ksh93-devel/ast-cc1bca27/src/cmd/dsslib/netflow/
H A Dnetflow.c436 r->value.number = rp->out_packets ? rp->out_packets : rp->packets; in op_get()
445 r->value.number = rp->packets ? rp->packets : rp->out_packets ? rp->out_packets : rp->in_packets; in op_get()
712 NUMBER(out_packets, 0),
/dports/shells/ast-ksh/ast-ksh93v/src/cmd/dsslib/netflow/
H A Dnetflow.c436 r->value.number = rp->out_packets ? rp->out_packets : rp->packets; in op_get()
445 r->value.number = rp->packets ? rp->packets : rp->out_packets ? rp->out_packets : rp->in_packets; in op_get()
712 NUMBER(out_packets, 0),
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/input/joystick/
H A Dxpad.c595 struct xpad_output_packet out_packets[XPAD_NUM_OUT_PACKETS]; member
1018 pkt = &xpad->out_packets[xpad->last_out_packet]; in xpad_prepare_next_out_packet()
1167 &xpad->out_packets[XPAD_OUT_CMD_IDX]; in xpad_inquiry_pad_presence()
1221 &xpad->out_packets[XPAD_OUT_CMD_IDX]; in xpadone_ack_mode_report()
1245 struct xpad_output_packet *packet = &xpad->out_packets[XPAD_OUT_FF_IDX]; in xpad_play_effect()
1383 &xpad->out_packets[XPAD_OUT_LED_IDX]; in xpad_send_led_command()
1525 &xpad->out_packets[XPAD_OUT_CMD_IDX]; in xpad360w_poweroff_controller()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/input/joystick/
H A Dxpad.c595 struct xpad_output_packet out_packets[XPAD_NUM_OUT_PACKETS]; member
1018 pkt = &xpad->out_packets[xpad->last_out_packet]; in xpad_prepare_next_out_packet()
1167 &xpad->out_packets[XPAD_OUT_CMD_IDX]; in xpad_inquiry_pad_presence()
1221 &xpad->out_packets[XPAD_OUT_CMD_IDX]; in xpadone_ack_mode_report()
1245 struct xpad_output_packet *packet = &xpad->out_packets[XPAD_OUT_FF_IDX]; in xpad_play_effect()
1383 &xpad->out_packets[XPAD_OUT_LED_IDX]; in xpad_send_led_command()
1525 &xpad->out_packets[XPAD_OUT_CMD_IDX]; in xpad360w_poweroff_controller()

123