Lines Matching refs:OPTSTRING
876 #define OPTSTRING 60 macro
879 char tstr[OPTSTRING]; in test_options()
881 memset(options, 0, OPTSTRING); in test_options()
884 strncat(options, "pass,", OPTSTRING); in test_options()
886 strncat(options, "pass_noisy,", OPTSTRING); in test_options()
888 strncat(options, "redir,", OPTSTRING); in test_options()
890 strncat(options, "redir_noisy,", OPTSTRING); in test_options()
892 strncat(options, "drop,", OPTSTRING); in test_options()
894 snprintf(tstr, OPTSTRING, "apply %d,", txmsg_apply); in test_options()
895 strncat(options, tstr, OPTSTRING); in test_options()
898 snprintf(tstr, OPTSTRING, "cork %d,", txmsg_cork); in test_options()
899 strncat(options, tstr, OPTSTRING); in test_options()
902 snprintf(tstr, OPTSTRING, "start %d,", txmsg_start); in test_options()
903 strncat(options, tstr, OPTSTRING); in test_options()
906 snprintf(tstr, OPTSTRING, "end %d,", txmsg_end); in test_options()
907 strncat(options, tstr, OPTSTRING); in test_options()
910 strncat(options, "ingress,", OPTSTRING); in test_options()
912 strncat(options, "skb,", OPTSTRING); in test_options()
917 char *options = calloc(OPTSTRING, sizeof(char)); in __test_exec()