Lines Matching refs:OPTSTRING
1276 #define OPTSTRING 60 macro
1279 char tstr[OPTSTRING]; in test_options()
1281 memset(options, 0, OPTSTRING); in test_options()
1284 strncat(options, "pass,", OPTSTRING); in test_options()
1286 strncat(options, "redir,", OPTSTRING); in test_options()
1288 strncat(options, "drop,", OPTSTRING); in test_options()
1290 snprintf(tstr, OPTSTRING, "apply %d,", txmsg_apply); in test_options()
1291 strncat(options, tstr, OPTSTRING); in test_options()
1294 snprintf(tstr, OPTSTRING, "cork %d,", txmsg_cork); in test_options()
1295 strncat(options, tstr, OPTSTRING); in test_options()
1298 snprintf(tstr, OPTSTRING, "start %d,", txmsg_start); in test_options()
1299 strncat(options, tstr, OPTSTRING); in test_options()
1302 snprintf(tstr, OPTSTRING, "end %d,", txmsg_end); in test_options()
1303 strncat(options, tstr, OPTSTRING); in test_options()
1306 snprintf(tstr, OPTSTRING, "pop (%d,%d),", in test_options()
1308 strncat(options, tstr, OPTSTRING); in test_options()
1311 strncat(options, "ingress,", OPTSTRING); in test_options()
1313 strncat(options, "redir_skb,", OPTSTRING); in test_options()
1315 strncat(options, "ktls_skb,", OPTSTRING); in test_options()
1317 strncat(options, "ktls,", OPTSTRING); in test_options()
1319 strncat(options, "peek,", OPTSTRING); in test_options()
1324 char *options = calloc(OPTSTRING, sizeof(char)); in __test_exec()