Home | History | Annotate | Download | only in tc

Lines Matching defs:argv

55 	char **argv = *argv_p;
63 if (matches(*argv, "skbedit") != 0)
69 if (matches(*argv, "queue_mapping") == 0) {
72 if (get_unsigned(&tmp, *argv, 10) || tmp > 65535) {
78 } else if (matches(*argv, "priority") == 0) {
81 if (get_tc_classid(&priority, *argv)) {
86 } else if (matches(*argv, "mark") == 0) {
89 if (get_u32(&mark, *argv, 0)) {
94 } else if (matches(*argv, "help") == 0) {
100 argv++;
104 if (matches(*argv, "reclassify") == 0) {
107 } else if (matches(*argv, "pipe") == 0) {
110 } else if (matches(*argv, "drop") == 0 ||
111 matches(*argv, "shot") == 0) {
114 } else if (matches(*argv, "continue") == 0) {
117 } else if (matches(*argv, "pass") == 0) {
124 if (matches(*argv, "index") == 0) {
126 if (get_u32(&sel.index, *argv, 10)) {
131 argv++;
157 *argv_p = argv;