Lines Matching refs:OPTSTRING
1268 #define OPTSTRING 60 macro
1271 char tstr[OPTSTRING]; in test_options()
1273 memset(options, 0, OPTSTRING); in test_options()
1276 append_str(options, "pass,", OPTSTRING); in test_options()
1278 append_str(options, "redir,", OPTSTRING); in test_options()
1280 append_str(options, "drop,", OPTSTRING); in test_options()
1282 snprintf(tstr, OPTSTRING, "apply %d,", txmsg_apply); in test_options()
1283 append_str(options, tstr, OPTSTRING); in test_options()
1286 snprintf(tstr, OPTSTRING, "cork %d,", txmsg_cork); in test_options()
1287 append_str(options, tstr, OPTSTRING); in test_options()
1290 snprintf(tstr, OPTSTRING, "start %d,", txmsg_start); in test_options()
1291 append_str(options, tstr, OPTSTRING); in test_options()
1294 snprintf(tstr, OPTSTRING, "end %d,", txmsg_end); in test_options()
1295 append_str(options, tstr, OPTSTRING); in test_options()
1298 snprintf(tstr, OPTSTRING, "pop (%d,%d),", in test_options()
1300 append_str(options, tstr, OPTSTRING); in test_options()
1303 append_str(options, "ingress,", OPTSTRING); in test_options()
1305 append_str(options, "redir_skb,", OPTSTRING); in test_options()
1307 append_str(options, "peek,", OPTSTRING); in test_options()
1312 char *options = calloc(OPTSTRING, sizeof(char)); in __test_exec()