Lines Matching defs:tccp
265 struct tcp_congctlent *ntcc, *tccp;
267 TAILQ_FOREACH(tccp, &tcp_congctlhd, congctl_ent)
268 if (!strcmp(name, tccp->congctl_name)) {
290 struct tcp_congctlent *tccp, *rtccp;
295 TAILQ_FOREACH(tccp, &tcp_congctlhd, congctl_ent) {
296 if (!strcmp(name, tccp->congctl_name))
297 rtccp = tccp;
320 struct tcp_congctlent *tccp, *old_tccp, *new_tccp;
330 TAILQ_FOREACH(tccp, &tcp_congctlhd, congctl_ent) {
331 if (!old_found && tccp->congctl_ctl == tp->t_congctl) {
332 old_tccp = tccp;
336 if (!new_found && !strcmp(name, tccp->congctl_name)) {
337 new_tccp = tccp;
365 struct tcp_congctlent *tccp;
369 TAILQ_FOREACH(tccp, &tcp_congctlhd, congctl_ent) {
370 if (tccp->congctl_ctl == tp->t_congctl) {
371 tccp->congctl_refcnt--;
383 struct tcp_congctlent *tccp;
387 TAILQ_FOREACH(tccp, &tcp_congctlhd, congctl_ent)
388 if (tccp->congctl_ctl == tcc)
389 return tccp->congctl_name;
397 struct tcp_congctlent *tccp;
401 TAILQ_FOREACH(tccp, &tcp_congctlhd, congctl_ent) {
402 strlcat(tcp_congctl_avail, tccp->congctl_name,
404 if (TAILQ_NEXT(tccp, congctl_ent))