Lines Matching refs:OPTSTRING
1299 #define OPTSTRING 60 macro
1302 char tstr[OPTSTRING]; in test_options()
1304 memset(options, 0, OPTSTRING); in test_options()
1307 append_str(options, "pass,", OPTSTRING); in test_options()
1309 append_str(options, "redir,", OPTSTRING); in test_options()
1311 append_str(options, "drop,", OPTSTRING); in test_options()
1313 snprintf(tstr, OPTSTRING, "apply %d,", txmsg_apply); in test_options()
1314 append_str(options, tstr, OPTSTRING); in test_options()
1317 snprintf(tstr, OPTSTRING, "cork %d,", txmsg_cork); in test_options()
1318 append_str(options, tstr, OPTSTRING); in test_options()
1321 snprintf(tstr, OPTSTRING, "start %d,", txmsg_start); in test_options()
1322 append_str(options, tstr, OPTSTRING); in test_options()
1325 snprintf(tstr, OPTSTRING, "end %d,", txmsg_end); in test_options()
1326 append_str(options, tstr, OPTSTRING); in test_options()
1329 snprintf(tstr, OPTSTRING, "pop (%d,%d),", in test_options()
1331 append_str(options, tstr, OPTSTRING); in test_options()
1334 append_str(options, "ingress,", OPTSTRING); in test_options()
1336 append_str(options, "redir_skb,", OPTSTRING); in test_options()
1338 append_str(options, "ktls_skb,", OPTSTRING); in test_options()
1340 append_str(options, "ktls,", OPTSTRING); in test_options()
1342 append_str(options, "peek,", OPTSTRING); in test_options()
1347 char *options = calloc(OPTSTRING, sizeof(char)); in __test_exec()