Lines Matching refs:OPTSTRING
1102 #define OPTSTRING 60 macro
1105 char tstr[OPTSTRING]; in test_options()
1107 memset(options, 0, OPTSTRING); in test_options()
1110 strncat(options, "pass,", OPTSTRING); in test_options()
1112 strncat(options, "pass_noisy,", OPTSTRING); in test_options()
1114 strncat(options, "redir,", OPTSTRING); in test_options()
1116 strncat(options, "redir_noisy,", OPTSTRING); in test_options()
1118 strncat(options, "drop,", OPTSTRING); in test_options()
1120 snprintf(tstr, OPTSTRING, "apply %d,", txmsg_apply); in test_options()
1121 strncat(options, tstr, OPTSTRING); in test_options()
1124 snprintf(tstr, OPTSTRING, "cork %d,", txmsg_cork); in test_options()
1125 strncat(options, tstr, OPTSTRING); in test_options()
1128 snprintf(tstr, OPTSTRING, "start %d,", txmsg_start); in test_options()
1129 strncat(options, tstr, OPTSTRING); in test_options()
1132 snprintf(tstr, OPTSTRING, "end %d,", txmsg_end); in test_options()
1133 strncat(options, tstr, OPTSTRING); in test_options()
1136 snprintf(tstr, OPTSTRING, "pop (%d,%d),", in test_options()
1138 strncat(options, tstr, OPTSTRING); in test_options()
1141 strncat(options, "ingress,", OPTSTRING); in test_options()
1143 strncat(options, "skb,", OPTSTRING); in test_options()
1145 strncat(options, "ktls,", OPTSTRING); in test_options()
1147 strncat(options, "peek,", OPTSTRING); in test_options()
1152 char *options = calloc(OPTSTRING, sizeof(char)); in __test_exec()