Symbol: json_do_uint
usr.sbin/bgpctl/json.h
32
void json_do_uint(const char *, unsigned long long);
usr.sbin/bgpctl/output_json.c
1009
json_do_uint("num_ASnum", set->as_cnt);
usr.sbin/bgpctl/output_json.c
1011
json_do_uint("num_IPv4", set->v4_cnt);
usr.sbin/bgpctl/output_json.c
1012
json_do_uint("num_IPv6", set->v6_cnt);
usr.sbin/bgpctl/output_json.c
1026
json_do_uint("remote_port", rtr->remote_port);
usr.sbin/bgpctl/output_json.c
1032
json_do_uint("version", rtr->version);
usr.sbin/bgpctl/output_json.c
1033
json_do_uint("minimal_version", rtr->min_version);
usr.sbin/bgpctl/output_json.c
1034
json_do_uint("session_id", rtr->session_id);
usr.sbin/bgpctl/output_json.c
1035
json_do_uint("serial", rtr->serial);
usr.sbin/bgpctl/output_json.c
1037
json_do_uint("refresh", rtr->refresh);
usr.sbin/bgpctl/output_json.c
1038
json_do_uint("retry", rtr->retry);
usr.sbin/bgpctl/output_json.c
1039
json_do_uint("expire", rtr->expire);
usr.sbin/bgpctl/output_json.c
151
json_do_uint("sent", p->stats.prefix_out_cnt);
usr.sbin/bgpctl/output_json.c
152
json_do_uint("received", p->stats.prefix_cnt);
usr.sbin/bgpctl/output_json.c
158
json_do_uint("open", p->stats.msg_sent_open);
usr.sbin/bgpctl/output_json.c
159
json_do_uint("notifications", p->stats.msg_sent_notification);
usr.sbin/bgpctl/output_json.c
160
json_do_uint("updates", p->stats.msg_sent_update);
usr.sbin/bgpctl/output_json.c
161
json_do_uint("keepalives", p->stats.msg_sent_keepalive);
usr.sbin/bgpctl/output_json.c
162
json_do_uint("route_refresh", p->stats.msg_sent_rrefresh);
usr.sbin/bgpctl/output_json.c
163
json_do_uint("total",
usr.sbin/bgpctl/output_json.c
170
json_do_uint("open", p->stats.msg_rcvd_open);
usr.sbin/bgpctl/output_json.c
171
json_do_uint("notifications", p->stats.msg_rcvd_notification);
usr.sbin/bgpctl/output_json.c
172
json_do_uint("updates", p->stats.msg_rcvd_update);
usr.sbin/bgpctl/output_json.c
173
json_do_uint("keepalives", p->stats.msg_rcvd_keepalive);
usr.sbin/bgpctl/output_json.c
174
json_do_uint("route_refresh", p->stats.msg_rcvd_rrefresh);
usr.sbin/bgpctl/output_json.c
175
json_do_uint("total",
usr.sbin/bgpctl/output_json.c
186
json_do_uint("updates", p->stats.prefix_sent_update);
usr.sbin/bgpctl/output_json.c
187
json_do_uint("withdraws", p->stats.prefix_sent_withdraw);
usr.sbin/bgpctl/output_json.c
188
json_do_uint("eor", p->stats.prefix_sent_eor);
usr.sbin/bgpctl/output_json.c
192
json_do_uint("updates", p->stats.prefix_rcvd_update);
usr.sbin/bgpctl/output_json.c
193
json_do_uint("withdraws", p->stats.prefix_rcvd_withdraw);
usr.sbin/bgpctl/output_json.c
194
json_do_uint("eor", p->stats.prefix_rcvd_eor);
usr.sbin/bgpctl/output_json.c
198
json_do_uint("updates", p->stats.pending_update);
usr.sbin/bgpctl/output_json.c
199
json_do_uint("withdraws", p->stats.pending_withdraw);
usr.sbin/bgpctl/output_json.c
207
json_do_uint("request", p->stats.refresh_sent_req);
usr.sbin/bgpctl/output_json.c
208
json_do_uint("borr", p->stats.refresh_sent_borr);
usr.sbin/bgpctl/output_json.c
209
json_do_uint("eorr", p->stats.refresh_sent_eorr);
usr.sbin/bgpctl/output_json.c
213
json_do_uint("request", p->stats.refresh_rcvd_req);
usr.sbin/bgpctl/output_json.c
214
json_do_uint("borr", p->stats.refresh_rcvd_borr);
usr.sbin/bgpctl/output_json.c
215
json_do_uint("eorr", p->stats.refresh_rcvd_eorr);
usr.sbin/bgpctl/output_json.c
223
json_do_uint("ibuf_queue", p->stats.ibufq_msg_count);
usr.sbin/bgpctl/output_json.c
224
json_do_uint("rib_entry", p->stats.rib_entry_count);
usr.sbin/bgpctl/output_json.c
227
json_do_uint("ibuf_queue", p->stats.ibufq_payload_size);
usr.sbin/bgpctl/output_json.c
248
json_do_uint("multihop_distance", p->conf.distance);
usr.sbin/bgpctl/output_json.c
250
json_do_uint("max_prefix", p->conf.max_prefix);
usr.sbin/bgpctl/output_json.c
252
json_do_uint("max_prefix_restart",
usr.sbin/bgpctl/output_json.c
256
json_do_uint("max_out_prefix", p->conf.max_out_prefix);
usr.sbin/bgpctl/output_json.c
258
json_do_uint("max_out_prefix_restart",
usr.sbin/bgpctl/output_json.c
265
json_do_uint("holdtime", p->conf.holdtime);
usr.sbin/bgpctl/output_json.c
266
json_do_uint("min_holdtime", p->conf.min_holdtime);
usr.sbin/bgpctl/output_json.c
298
json_do_uint("holdtime", p->holdtime);
usr.sbin/bgpctl/output_json.c
299
json_do_uint("keepalive", p->holdtime / 3);
usr.sbin/bgpctl/output_json.c
303
json_do_uint("port", p->local_port);
usr.sbin/bgpctl/output_json.c
309
json_do_uint("port", p->remote_port);
usr.sbin/bgpctl/output_json.c
391
json_do_uint("priority", kf->priority);
usr.sbin/bgpctl/output_json.c
412
json_do_uint("mplslabel",
usr.sbin/bgpctl/output_json.c
425
json_do_uint("rtableid", kt->rtableid);
usr.sbin/bgpctl/output_json.c
438
json_do_uint("rdomain", iface->rdomain);
usr.sbin/bgpctl/output_json.c
447
json_do_uint("baudrate", iface->baudrate);
usr.sbin/bgpctl/output_json.c
467
json_do_uint("priority", nh->kr.priority);
usr.sbin/bgpctl/output_json.c
625
json_do_uint("length", alen);
usr.sbin/bgpctl/output_json.c
670
json_do_uint("metric", val);
usr.sbin/bgpctl/output_json.c
686
json_do_uint("AS", as);
usr.sbin/bgpctl/output_json.c
794
json_do_uint("path_id", pathid);
usr.sbin/bgpctl/output_json.c
808
json_do_uint("as", as);
usr.sbin/bgpctl/output_json.c
851
json_do_uint("path_id", r->path_id);
usr.sbin/bgpctl/output_json.c
87
json_do_uint("timeout", capa->grestart.timeout);
usr.sbin/bgpctl/output_json.c
876
json_do_uint("metric", r->med);
usr.sbin/bgpctl/output_json.c
877
json_do_uint("localpref", r->local_pref);
usr.sbin/bgpctl/output_json.c
878
json_do_uint("weight", r->weight);
usr.sbin/bgpctl/output_json.c
892
json_do_uint("count", count);
usr.sbin/bgpctl/output_json.c
894
json_do_uint("size", size);
usr.sbin/bgpctl/output_json.c
896
json_do_uint("references", refs);
usr.sbin/bgpctl/output_json.c
987
json_do_uint("count", stats->rde_event_loop_count);
usr.sbin/bgpctl/output_json.c
988
json_do_uint("loop_usec", stats->rde_event_loop_usec);
usr.sbin/bgpctl/output_json.c
989
json_do_uint("io_usec", stats->rde_event_io_usec);
usr.sbin/bgpctl/output_json.c
990
json_do_uint("peer_usec", stats->rde_event_peer_usec);
usr.sbin/bgpctl/output_json.c
991
json_do_uint("adjout_usec", stats->rde_event_adjout_usec);
usr.sbin/bgpctl/output_json.c
992
json_do_uint("ribdump_usec", stats->rde_event_ribdump_usec);
usr.sbin/bgpctl/output_json.c
993
json_do_uint("nexthop_usec", stats->rde_event_nexthop_usec);
usr.sbin/bgpctl/output_json.c
994
json_do_uint("update_usec", stats->rde_event_update_usec);
usr.sbin/radiusctl/json.h
32
void json_do_uint(const char *, unsigned long long);
usr.sbin/radiusctl/radiusctl.c
870
json_do_uint("input-packets", stat->ipackets);
usr.sbin/radiusctl/radiusctl.c
871
json_do_uint("output-packets", stat->opackets);
usr.sbin/radiusctl/radiusctl.c
872
json_do_uint("input-bytes", stat->ibytes);
usr.sbin/radiusctl/radiusctl.c
873
json_do_uint("output-bytes", stat->obytes);
usr.sbin/radiusctl/radiusctl.c
886
json_do_uint("sequence-number", dump->records[idx].rec.seq);
usr.sbin/radiusctl/radiusctl.c
892
json_do_uint("start", start->tv_sec);
usr.sbin/radiusctl/radiusctl.c
893
json_do_uint("elapsed", dif->tv_sec);
usr.sbin/radiusctl/radiusctl.c
895
json_do_uint("timeout", timeout->tv_sec);
usr.sbin/rpki-client/json.h
32
void json_do_uint(const char *, unsigned long long);
usr.sbin/rpki-client/print.c
190
json_do_uint("asid", ases[i].id);
usr.sbin/rpki-client/print.c
209
json_do_uint("min", ases[i].range.min);
usr.sbin/rpki-client/print.c
210
json_do_uint("max", ases[i].range.max);
usr.sbin/rpki-client/print.c
549
json_do_uint("asid", p->asid);
usr.sbin/rpki-client/print.c
550
json_do_uint("maxlen", p->ips[i].maxlength);
usr.sbin/rpki-client/print.c
696
json_do_uint("customer_asid", p->custasid);
usr.sbin/rpki-client/print.c
714
json_do_uint("asid", p->providers[i]);
usr.sbin/rpki-client/print.c
834
json_do_uint("size", ccr_mft->size);
usr.sbin/rpki-client/print.c
940
json_do_uint("customer_asid", vap->custasid);
usr.sbin/rpki-client/print.c
949
json_do_uint("provider", vap->providers[i]);