Lines Matching refs:cor
178 struct tc_netem_corr cor = {}; in netem_parse_opt() local
214 if (get_percent(&cor.delay_corr, *argv)) { in netem_parse_opt()
242 if (get_percent(&cor.loss_corr, *argv)) { in netem_parse_opt()
386 if (get_percent(&cor.dup_corr, *argv)) { in netem_parse_opt()
471 addattr_l(n, 1024, TCA_NETEM_CORR, &cor, sizeof(cor)) < 0) in netem_parse_opt()
533 const struct tc_netem_corr *cor = NULL; in netem_print_opt() local
563 if (RTA_PAYLOAD(tb[TCA_NETEM_CORR]) < sizeof(*cor)) in netem_print_opt()
565 cor = RTA_DATA(tb[TCA_NETEM_CORR]); in netem_print_opt()
610 if (cor && cor->delay_corr) in netem_print_opt()
611 fprintf(f, " %s", sprint_percent(cor->delay_corr, b1)); in netem_print_opt()
617 if (cor && cor->loss_corr) in netem_print_opt()
618 fprintf(f, " %s", sprint_percent(cor->loss_corr, b1)); in netem_print_opt()
641 if (cor && cor->dup_corr) in netem_print_opt()
642 fprintf(f, " %s", sprint_percent(cor->dup_corr, b1)); in netem_print_opt()