Lines Matching refs:tcpcb

193 static void tcp_common_congestion_exp(struct tcpcb *, int, int);
195 static int tcp_reno_do_fast_retransmit(struct tcpcb *, const struct tcphdr *);
196 static int tcp_reno_fast_retransmit(struct tcpcb *, const struct tcphdr *);
197 static void tcp_reno_slow_retransmit(struct tcpcb *);
198 static void tcp_reno_fast_retransmit_newack(struct tcpcb *,
200 static void tcp_reno_newack(struct tcpcb *, const struct tcphdr *);
201 static void tcp_reno_congestion_exp(struct tcpcb *tp);
203 static int tcp_newreno_fast_retransmit(struct tcpcb *, const struct tcphdr *);
204 static void tcp_newreno_fast_retransmit_newack(struct tcpcb *,
206 static void tcp_newreno_newack(struct tcpcb *, const struct tcphdr *);
208 static int tcp_cubic_fast_retransmit(struct tcpcb *, const struct tcphdr *);
209 static void tcp_cubic_slow_retransmit(struct tcpcb *tp);
210 static void tcp_cubic_newack(struct tcpcb *, const struct tcphdr *);
211 static void tcp_cubic_congestion_exp(struct tcpcb *);
318 tcp_congctl_select(struct tcpcb *tp, const char *name) in tcp_congctl_select()
363 tcp_congctl_release(struct tcpcb *tp) in tcp_congctl_release()
428 tcp_common_congestion_exp(struct tcpcb *tp, int betaa, int betab) in tcp_common_congestion_exp()
458 tcp_reno_congestion_exp(struct tcpcb *tp) in tcp_reno_congestion_exp()
465 tcp_reno_do_fast_retransmit(struct tcpcb *tp, const struct tcphdr *th) in tcp_reno_do_fast_retransmit()
504 tcp_reno_fast_retransmit(struct tcpcb *tp, const struct tcphdr *th) in tcp_reno_fast_retransmit()
520 tcp_reno_slow_retransmit(struct tcpcb *tp) in tcp_reno_slow_retransmit()
564 tcp_reno_fast_retransmit_newack(struct tcpcb *tp, in tcp_reno_fast_retransmit_newack()
589 tcp_reno_newack(struct tcpcb *tp, const struct tcphdr *th) in tcp_reno_newack()
657 tcp_newreno_fast_retransmit(struct tcpcb *tp, const struct tcphdr *th) in tcp_newreno_fast_retransmit()
679 tcp_newreno_fast_retransmit_newack(struct tcpcb *tp, const struct tcphdr *th) in tcp_newreno_fast_retransmit_newack()
773 tcp_newreno_newack(struct tcpcb *tp, const struct tcphdr *th) in tcp_newreno_newack()
798 static void tcp_cubic_update_ctime(struct tcpcb *tp);
799 static uint32_t tcp_cubic_diff_ctime(struct tcpcb *);
801 static ulong tcp_cubic_getW(struct tcpcb *, uint32_t, uint32_t);
808 tcp_cubic_update_ctime(struct tcpcb *tp) in tcp_cubic_update_ctime()
821 tcp_cubic_diff_ctime(struct tcpcb *tp) in tcp_cubic_diff_ctime()
865 tcp_cubic_getW(struct tcpcb *tp, uint32_t ms_elapsed, uint32_t rtt) in tcp_cubic_getW()
881 tcp_cubic_congestion_exp(struct tcpcb *tp) in tcp_cubic_congestion_exp()
906 tcp_cubic_fast_retransmit(struct tcpcb *tp, const struct tcphdr *th) in tcp_cubic_fast_retransmit()
925 tcp_cubic_newack(struct tcpcb *tp, const struct tcphdr *th) in tcp_cubic_newack()
963 tcp_cubic_slow_retransmit(struct tcpcb *tp) in tcp_cubic_slow_retransmit()