Home
last modified time | relevance | path

Searched refs:tp_drops (Results 1 – 7 of 7) sorted by relevance

/external/strace/tests-mx32/
Dnet-tpacket_stats.c11 unsigned int tp_packets, tp_drops, tp_freeze_q_cnt; member
41 if (optlen > offsetof(struct tp_stats, tp_drops)) { in get_tpacket_stats()
42 optlen -= offsetof(struct tp_stats, tp_drops); in get_tpacket_stats()
43 if (optlen < sizeof(tpstats->tp_drops)) { in get_tpacket_stats()
47 PRINT_FIELD_U(", ", *tpstats, tp_drops); in get_tpacket_stats()
50 offsetof(struct tp_stats, tp_drops)) { in get_tpacket_stats()
52 offsetof(struct tp_stats, tp_drops); in get_tpacket_stats()
79 const unsigned int offset_tp_drops = offsetofend(struct tp_stats, tp_drops); in main()
/external/strace/tests/
Dnet-tpacket_stats.c11 unsigned int tp_packets, tp_drops, tp_freeze_q_cnt; member
41 if (optlen > offsetof(struct tp_stats, tp_drops)) { in get_tpacket_stats()
42 optlen -= offsetof(struct tp_stats, tp_drops); in get_tpacket_stats()
43 if (optlen < sizeof(tpstats->tp_drops)) { in get_tpacket_stats()
47 PRINT_FIELD_U(", ", *tpstats, tp_drops); in get_tpacket_stats()
50 offsetof(struct tp_stats, tp_drops)) { in get_tpacket_stats()
52 offsetof(struct tp_stats, tp_drops); in get_tpacket_stats()
79 const unsigned int offset_tp_drops = offsetofend(struct tp_stats, tp_drops); in main()
/external/strace/tests-m32/
Dnet-tpacket_stats.c11 unsigned int tp_packets, tp_drops, tp_freeze_q_cnt; member
41 if (optlen > offsetof(struct tp_stats, tp_drops)) { in get_tpacket_stats()
42 optlen -= offsetof(struct tp_stats, tp_drops); in get_tpacket_stats()
43 if (optlen < sizeof(tpstats->tp_drops)) { in get_tpacket_stats()
47 PRINT_FIELD_U(", ", *tpstats, tp_drops); in get_tpacket_stats()
50 offsetof(struct tp_stats, tp_drops)) { in get_tpacket_stats()
52 offsetof(struct tp_stats, tp_drops); in get_tpacket_stats()
79 const unsigned int offset_tp_drops = offsetofend(struct tp_stats, tp_drops); in main()
/external/strace/
Dnet.c680 unsigned int tp_packets, tp_drops, tp_freeze_q_cnt; in print_tpacket_stats() member
700 if (len > offsetof(struct tp_stats, tp_drops)) { in print_tpacket_stats()
701 len -= offsetof(struct tp_stats, tp_drops); in print_tpacket_stats()
702 if (len < sizeof(stats.tp_drops)) { in print_tpacket_stats()
704 print_quoted_string((void *) &stats.tp_drops, in print_tpacket_stats()
707 PRINT_FIELD_U(", ", stats, tp_drops); in print_tpacket_stats()
710 offsetof(struct tp_stats, tp_drops)) { in print_tpacket_stats()
712 offsetof(struct tp_stats, tp_drops); in print_tpacket_stats()
/external/iproute2/include/uapi/linux/
Dif_packet.h75 unsigned int tp_drops; member
80 unsigned int tp_drops; member
/external/kernel-headers/original/uapi/linux/
Dif_packet.h77 unsigned int tp_drops; member
82 unsigned int tp_drops; member
/external/libpcap/
Dpcap-linux.c1361 handlep->stat.ps_drop += kstats.tp_drops; in pcap_stats_linux()