Lines Matching refs:OPTSTRING
1330 #define OPTSTRING 60 macro
1333 char tstr[OPTSTRING]; in test_options()
1335 memset(options, 0, OPTSTRING); in test_options()
1338 append_str(options, "pass,", OPTSTRING); in test_options()
1340 append_str(options, "redir,", OPTSTRING); in test_options()
1342 append_str(options, "drop,", OPTSTRING); in test_options()
1344 snprintf(tstr, OPTSTRING, "apply %d,", txmsg_apply); in test_options()
1345 append_str(options, tstr, OPTSTRING); in test_options()
1348 snprintf(tstr, OPTSTRING, "cork %d,", txmsg_cork); in test_options()
1349 append_str(options, tstr, OPTSTRING); in test_options()
1352 snprintf(tstr, OPTSTRING, "start %d,", txmsg_start); in test_options()
1353 append_str(options, tstr, OPTSTRING); in test_options()
1356 snprintf(tstr, OPTSTRING, "end %d,", txmsg_end); in test_options()
1357 append_str(options, tstr, OPTSTRING); in test_options()
1360 snprintf(tstr, OPTSTRING, "pop (%d,%d),", in test_options()
1362 append_str(options, tstr, OPTSTRING); in test_options()
1365 append_str(options, "ingress,", OPTSTRING); in test_options()
1367 append_str(options, "redir_skb,", OPTSTRING); in test_options()
1369 append_str(options, "ktls_skb,", OPTSTRING); in test_options()
1371 append_str(options, "ktls,", OPTSTRING); in test_options()
1373 append_str(options, "peek,", OPTSTRING); in test_options()
1378 char *options = calloc(OPTSTRING, sizeof(char)); in __test_exec()