Lines Matching refs:OPTSTRING
1328 #define OPTSTRING 60 macro
1331 char tstr[OPTSTRING]; in test_options()
1333 memset(options, 0, OPTSTRING); in test_options()
1336 append_str(options, "pass,", OPTSTRING); in test_options()
1338 append_str(options, "redir,", OPTSTRING); in test_options()
1340 append_str(options, "drop,", OPTSTRING); in test_options()
1342 snprintf(tstr, OPTSTRING, "apply %d,", txmsg_apply); in test_options()
1343 append_str(options, tstr, OPTSTRING); in test_options()
1346 snprintf(tstr, OPTSTRING, "cork %d,", txmsg_cork); in test_options()
1347 append_str(options, tstr, OPTSTRING); in test_options()
1350 snprintf(tstr, OPTSTRING, "start %d,", txmsg_start); in test_options()
1351 append_str(options, tstr, OPTSTRING); in test_options()
1354 snprintf(tstr, OPTSTRING, "end %d,", txmsg_end); in test_options()
1355 append_str(options, tstr, OPTSTRING); in test_options()
1358 snprintf(tstr, OPTSTRING, "pop (%d,%d),", in test_options()
1360 append_str(options, tstr, OPTSTRING); in test_options()
1363 append_str(options, "ingress,", OPTSTRING); in test_options()
1365 append_str(options, "redir_skb,", OPTSTRING); in test_options()
1367 append_str(options, "ktls_skb,", OPTSTRING); in test_options()
1369 append_str(options, "ktls,", OPTSTRING); in test_options()
1371 append_str(options, "peek,", OPTSTRING); in test_options()
1376 char *options = calloc(OPTSTRING, sizeof(char)); in __test_exec()