Home
last modified time | relevance | path

Searched refs:bm_threshold (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/usr.bin/netstat/
H A Dmroute.c316 (unsigned long long)bw_meter->bm_threshold.b_packets); in print_bw_meter()
321 (unsigned long long)bw_meter->bm_threshold.b_bytes); in print_bw_meter()
325 (long long)bw_meter->bm_threshold.b_time.tv_sec, in print_bw_meter()
326 (long)bw_meter->bm_threshold.b_time.tv_usec, in print_bw_meter()
332 &bw_meter->bm_threshold.b_time, &end); in print_bw_meter()
/netbsd-src/sys/netinet/
H A Dip_mroute.c2208 if ((BW_TIMEVALCMP(&x->bm_threshold.b_time, in add_bw_upcall()
2210 (x->bm_threshold.b_packets == req->bu_threshold.b_packets) && in add_bw_upcall()
2211 (x->bm_threshold.b_bytes == req->bu_threshold.b_bytes) && in add_bw_upcall()
2226 x->bm_threshold.b_time = req->bu_threshold.b_time; in add_bw_upcall()
2229 x->bm_threshold.b_packets = req->bu_threshold.b_packets; in add_bw_upcall()
2230 x->bm_threshold.b_bytes = req->bu_threshold.b_bytes; in add_bw_upcall()
2298 if ((BW_TIMEVALCMP(&x->bm_threshold.b_time, in del_bw_upcall()
2300 (x->bm_threshold.b_packets == req->bu_threshold.b_packets) && in del_bw_upcall()
2301 (x->bm_threshold.b_bytes == req->bu_threshold.b_bytes) && in del_bw_upcall()
2339 if (BW_TIMEVALCMP(&delta, &x->bm_threshold.b_time, >)) { in bw_meter_receive_packet()
[all …]
H A Dip_mroute.h333 struct bw_data bm_threshold; /* the upcall threshold */ member