Symbol: cc_algo
usr/src/uts/common/inet/cc.h
200
STAILQ_ENTRY(cc_algo) entries;
usr/src/uts/common/inet/cc.h
203
typedef int cc_walk_func_t(void *, struct cc_algo *);
usr/src/uts/common/inet/cc.h
73
extern struct cc_algo *cc_load_algo(const char *name);
usr/src/uts/common/inet/cc.h
74
extern int cc_register_algo(struct cc_algo *add_cc);
usr/src/uts/common/inet/cc.h
75
extern int cc_deregister_algo(struct cc_algo *remove_cc);
usr/src/uts/common/inet/cc/cc.c
104
struct cc_algo *algo;
usr/src/uts/common/inet/cc/cc.c
126
struct cc_algo *
usr/src/uts/common/inet/cc/cc.c
129
struct cc_algo *algo;
usr/src/uts/common/inet/cc/cc.c
152
cc_deregister_algo(struct cc_algo *remove_cc)
usr/src/uts/common/inet/cc/cc.c
154
struct cc_algo *funcs, *tmpfuncs;
usr/src/uts/common/inet/cc/cc.c
160
STAILQ_REMOVE(&cc_list, funcs, cc_algo, entries);
usr/src/uts/common/inet/cc/cc.c
173
cc_register_algo(struct cc_algo *add_cc)
usr/src/uts/common/inet/cc/cc.c
175
struct cc_algo *funcs;
usr/src/uts/common/inet/cc/cc.c
64
static STAILQ_HEAD(cc_head, cc_algo) cc_list = STAILQ_HEAD_INITIALIZER(cc_list);
usr/src/uts/common/inet/cc/cc_cubic.c
112
struct cc_algo cubic_cc_algo = {
usr/src/uts/common/inet/cc/cc_cubic.c
79
static struct cc_algo *newreno_cc_algo;
usr/src/uts/common/inet/cc/cc_newreno.c
75
struct cc_algo newreno_cc_algo = {
usr/src/uts/common/inet/cc/cc_sunreno.c
55
struct cc_algo sunreno_cc_algo = {
usr/src/uts/common/inet/tcp.h
158
struct cc_algo *tcp_cc_algo; /* congestion control algorithm */
usr/src/uts/common/inet/tcp/tcp_opt_data.c
887
struct cc_algo *algo;
usr/src/uts/common/inet/tcp/tcp_tunables.c
257
struct cc_algo *algo = cc_load_algo(name);
usr/src/uts/common/inet/tcp/tcp_tunables.c
269
tcp_copy_ccname(void *data, struct cc_algo *algo)
usr/src/uts/common/inet/tcp_stack.h
118
struct cc_algo *tcps_default_cc_algo;