Lines Matching refs:OPTSTRING
1286 #define OPTSTRING 60 macro
1289 char tstr[OPTSTRING]; in test_options()
1291 memset(options, 0, OPTSTRING); in test_options()
1294 append_str(options, "pass,", OPTSTRING); in test_options()
1296 append_str(options, "redir,", OPTSTRING); in test_options()
1298 append_str(options, "drop,", OPTSTRING); in test_options()
1300 snprintf(tstr, OPTSTRING, "apply %d,", txmsg_apply); in test_options()
1301 append_str(options, tstr, OPTSTRING); in test_options()
1304 snprintf(tstr, OPTSTRING, "cork %d,", txmsg_cork); in test_options()
1305 append_str(options, tstr, OPTSTRING); in test_options()
1308 snprintf(tstr, OPTSTRING, "start %d,", txmsg_start); in test_options()
1309 append_str(options, tstr, OPTSTRING); in test_options()
1312 snprintf(tstr, OPTSTRING, "end %d,", txmsg_end); in test_options()
1313 append_str(options, tstr, OPTSTRING); in test_options()
1316 snprintf(tstr, OPTSTRING, "pop (%d,%d),", in test_options()
1318 append_str(options, tstr, OPTSTRING); in test_options()
1321 append_str(options, "ingress,", OPTSTRING); in test_options()
1323 append_str(options, "redir_skb,", OPTSTRING); in test_options()
1325 append_str(options, "ktls_skb,", OPTSTRING); in test_options()
1327 append_str(options, "ktls,", OPTSTRING); in test_options()
1329 append_str(options, "peek,", OPTSTRING); in test_options()
1334 char *options = calloc(OPTSTRING, sizeof(char)); in __test_exec()