Symbol: cc_algo
sys/dev/cxgbe/tom/t4_tom.c
1269
struct cc_algo *cc = CC_ALGO(tp);
sys/netinet/cc/cc.c
104
VNET_DEFINE(struct cc_algo *, default_cc_ptr) = NULL;
sys/netinet/cc/cc.c
111
cc_refer(struct cc_algo *algo)
sys/netinet/cc/cc.c
118
cc_release(struct cc_algo *algo)
sys/netinet/cc/cc.c
126
cc_attach(struct tcpcb *tp, struct cc_algo *algo)
sys/netinet/cc/cc.c
140
struct cc_algo *algo;
sys/netinet/cc/cc.c
156
struct cc_algo *funcs;
sys/netinet/cc/cc.c
198
struct cc_algo *algo;
sys/netinet/cc/cc.c
248
cc_check_default(struct cc_algo *remove_cc)
sys/netinet/cc/cc.c
284
cc_deregister_algo_locked(struct cc_algo *remove_cc)
sys/netinet/cc/cc.c
286
struct cc_algo *funcs;
sys/netinet/cc/cc.c
308
STAILQ_REMOVE(&cc_list, remove_cc, cc_algo, entries);
sys/netinet/cc/cc.c
316
cc_deregister_algo(struct cc_algo *remove_cc)
sys/netinet/cc/cc.c
330
cc_register_algo(struct cc_algo *add_cc)
sys/netinet/cc/cc.c
332
struct cc_algo *funcs;
sys/netinet/cc/cc.c
374
struct cc_algo *cc;
sys/netinet/cc/cc.c
617
cc_stop_new_assignments(struct cc_algo *algo)
sys/netinet/cc/cc.c
636
struct cc_algo *algo;
sys/netinet/cc/cc.c
640
algo = (struct cc_algo *)data;
sys/netinet/cc/cc.h
197
STAILQ_ENTRY (cc_algo) entries;
sys/netinet/cc/cc.h
239
void cc_refer(struct cc_algo *algo);
sys/netinet/cc/cc.h
241
void cc_release(struct cc_algo *algo);
sys/netinet/cc/cc.h
244
void cc_attach(struct tcpcb *, struct cc_algo *);
sys/netinet/cc/cc.h
57
extern STAILQ_HEAD(cc_head, cc_algo) cc_list;
sys/netinet/cc/cc.h
61
VNET_DECLARE(struct cc_algo *, default_cc_ptr);
sys/netinet/cc/cc.h
85
int cc_register_algo(struct cc_algo *add_cc);
sys/netinet/cc/cc.h
86
int cc_deregister_algo(struct cc_algo *remove_cc);
sys/netinet/cc/cc_cdg.c
229
struct cc_algo cdg_cc_algo = {
sys/netinet/cc/cc_chd.c
133
struct cc_algo chd_cc_algo = {
sys/netinet/cc/cc_cubic.c
91
struct cc_algo cubic_cc_algo = {
sys/netinet/cc/cc_dctcp.c
93
struct cc_algo dctcp_cc_algo = {
sys/netinet/cc/cc_hd.c
97
struct cc_algo hd_cc_algo = {
sys/netinet/cc/cc_htcp.c
180
struct cc_algo htcp_cc_algo = {
sys/netinet/cc/cc_newreno.c
102
struct cc_algo newreno_cc_algo = {
sys/netinet/cc/cc_vegas.c
108
struct cc_algo vegas_cc_algo = {
sys/netinet/tcp_usrreq.c
1913
extern struct cc_algo newreno_cc_algo;
sys/netinet/tcp_usrreq.c
1918
struct cc_algo *algo;
sys/netinet/tcp_var.h
430
struct cc_algo *t_cc; /* congestion control algorithm */