HomeSort by relevance Sort by last modified time
    Searched refs:has_arg (Results 76 - 100 of 133) sorted by null

1 2 34 5 6

  /external/iptables/iptables/
iptables-save.c 27 {.name = "counters", .has_arg = false, .val = 'c'},
28 {.name = "dump", .has_arg = false, .val = 'd'},
29 {.name = "table", .has_arg = true, .val = 't'},
30 {.name = "modprobe", .has_arg = true, .val = 'M'},
ip6tables-restore.c 32 {.name = "binary", .has_arg = false, .val = 'b'},
33 {.name = "counters", .has_arg = false, .val = 'c'},
34 {.name = "verbose", .has_arg = false, .val = 'v'},
35 {.name = "test", .has_arg = false, .val = 't'},
36 {.name = "help", .has_arg = false, .val = 'h'},
37 {.name = "noflush", .has_arg = false, .val = 'n'},
38 {.name = "modprobe", .has_arg = true, .val = 'M'},
39 {.name = "table", .has_arg = true, .val = 'T'},
iptables-restore.c 29 {.name = "binary", .has_arg = false, .val = 'b'},
30 {.name = "counters", .has_arg = false, .val = 'c'},
31 {.name = "verbose", .has_arg = false, .val = 'v'},
32 {.name = "test", .has_arg = false, .val = 't'},
33 {.name = "help", .has_arg = false, .val = 'h'},
34 {.name = "noflush", .has_arg = false, .val = 'n'},
35 {.name = "modprobe", .has_arg = true, .val = 'M'},
36 {.name = "table", .has_arg = true, .val = 'T'},
iptables.c 77 {.name = "append", .has_arg = 1, .val = 'A'},
78 {.name = "delete", .has_arg = 1, .val = 'D'},
79 {.name = "check", .has_arg = 1, .val = 'C'},
80 {.name = "insert", .has_arg = 1, .val = 'I'},
81 {.name = "replace", .has_arg = 1, .val = 'R'},
82 {.name = "list", .has_arg = 2, .val = 'L'},
83 {.name = "list-rules", .has_arg = 2, .val = 'S'},
84 {.name = "flush", .has_arg = 2, .val = 'F'},
85 {.name = "zero", .has_arg = 2, .val = 'Z'},
86 {.name = "new-chain", .has_arg = 1, .val = 'N'}
    [all...]
ip6tables.c 80 {.name = "append", .has_arg = 1, .val = 'A'},
81 {.name = "delete", .has_arg = 1, .val = 'D'},
82 {.name = "check" , .has_arg = 1, .val = 'C'},
83 {.name = "insert", .has_arg = 1, .val = 'I'},
84 {.name = "replace", .has_arg = 1, .val = 'R'},
85 {.name = "list", .has_arg = 2, .val = 'L'},
86 {.name = "list-rules", .has_arg = 2, .val = 'S'},
87 {.name = "flush", .has_arg = 2, .val = 'F'},
88 {.name = "zero", .has_arg = 2, .val = 'Z'},
89 {.name = "new-chain", .has_arg = 1, .val = 'N'}
    [all...]
  /external/tcpdump/win32/Include/
getopt.h 70 The field `has_arg' is:
93 /* has_arg can't be an enum because some compilers complain about
95 int has_arg; member in struct:option
100 /* Names for the values of the `has_arg' field of `struct option'. */
  /ndk/sources/host-tools/make-3.81/
getopt.h 65 The field `has_arg' is:
88 /* has_arg can't be an enum because some compilers complain about
90 int has_arg; member in struct:option
95 /* Names for the values of the `has_arg' field of `struct option'. */
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
getopt.h 65 int has_arg; /* does it take an argument? */ member in struct:option
70 enum /* permitted values for its `has_arg' field... */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
getopt.py 152 has_arg, opt = long_has_args(opt, longopts)
153 if has_arg:
164 # has_arg?
182 has_arg = unique_match.endswith('=')
183 if has_arg:
185 return has_arg, unique_match
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
getopt.py 152 has_arg, opt = long_has_args(opt, longopts)
153 if has_arg:
164 # has_arg?
182 has_arg = unique_match.endswith('=')
183 if has_arg:
185 return has_arg, unique_match
  /external/e2fsprogs/include/nonunix/
getopt.h 67 The field `has_arg' is:
90 /* has_arg can't be an enum because some compilers complain about
92 int has_arg; member in struct:option
97 /* Names for the values of the `has_arg' field of `struct option'. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
getopt.h 90 The field `has_arg' is:
109 /* has_arg can't be an enum because some compilers complain about
111 int has_arg; member in struct:option
116 /* Names for the values of the `has_arg' field of `struct option'. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
getopt.h 90 The field `has_arg' is:
109 /* has_arg can't be an enum because some compilers complain about
111 int has_arg; member in struct:option
116 /* Names for the values of the `has_arg' field of `struct option'. */
  /external/fio/lib/
getopt_long.c 97 if (lo->has_arg)
101 } else if (lo->has_arg == 1) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_getopt.py 30 has_arg, option = getopt.long_has_args('abc', ['abc='])
31 self.assertTrue(has_arg)
34 has_arg, option = getopt.long_has_args('abc', ['abc'])
35 self.assertFalse(has_arg)
38 has_arg, option = getopt.long_has_args('abc', ['abcd'])
39 self.assertFalse(has_arg)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_getopt.py 30 has_arg, option = getopt.long_has_args('abc', ['abc='])
31 self.assertTrue(has_arg)
34 has_arg, option = getopt.long_has_args('abc', ['abc'])
35 self.assertFalse(has_arg)
38 has_arg, option = getopt.long_has_args('abc', ['abcd'])
39 self.assertFalse(has_arg)
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
getopt_long.c 254 long_options[i].has_arg !=
255 long_options[match].has_arg ||
273 if (long_options[match].has_arg == no_argument
295 if (long_options[match].has_arg == required_argument ||
296 long_options[match].has_arg == optional_argument) {
299 else if (long_options[match].has_arg ==
307 if ((long_options[match].has_arg == required_argument)
  /external/iptables/extensions/
libxt_tcp.c 30 {.name = "source-port", .has_arg = true, .val = '1'},
31 {.name = "sport", .has_arg = true, .val = '1'}, /* synonym */
32 {.name = "destination-port", .has_arg = true, .val = '2'},
33 {.name = "dport", .has_arg = true, .val = '2'}, /* synonym */
34 {.name = "syn", .has_arg = false, .val = '3'},
35 {.name = "tcp-flags", .has_arg = true, .val = '4'},
36 {.name = "tcp-option", .has_arg = true, .val = '5'},
libxt_SET.c 38 {.name = "add-set", .has_arg = true, .val = '1'},
39 {.name = "del-set", .has_arg = true, .val = '2'},
254 {.name = "add-set", .has_arg = true, .val = '1'},
255 {.name = "del-set", .has_arg = true, .val = '2'},
256 {.name = "exist", .has_arg = false, .val = '3'},
257 {.name = "timeout", .has_arg = true, .val = '4'},
  /external/fio/
init.c 87 .has_arg = required_argument,
92 .has_arg = required_argument,
97 .has_arg = required_argument,
102 .has_arg = required_argument,
107 .has_arg = no_argument,
112 .has_arg = optional_argument,
117 .has_arg = optional_argument,
122 .has_arg = no_argument,
127 .has_arg = no_argument,
132 .has_arg = optional_argument
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
getopt.in.h 144 The field `has_arg' is:
163 /* has_arg can't be an enum because some compilers complain about
165 int has_arg; member in struct:option
170 /* Names for the values of the `has_arg' field of `struct option'. */
  /external/chromium_org/third_party/mesa/src/src/getopt/
getopt_long.c 208 if (long_options[match].has_arg == no_argument
222 if (long_options[match].has_arg == required_argument ||
223 long_options[match].has_arg == optional_argument) {
226 else if (long_options[match].has_arg ==
234 if ((long_options[match].has_arg == required_argument)
  /external/mesa3d/src/getopt/
getopt_long.c 208 if (long_options[match].has_arg == no_argument
222 if (long_options[match].has_arg == required_argument ||
223 long_options[match].has_arg == optional_argument) {
226 else if (long_options[match].has_arg ==
234 if ((long_options[match].has_arg == required_argument)
  /external/blktrace/
blkiomon.c 618 .has_arg = required_argument,
624 .has_arg = required_argument,
630 .has_arg = required_argument,
636 .has_arg = required_argument,
642 .has_arg = required_argument,
648 .has_arg = required_argument,
654 .has_arg = required_argument,
660 .has_arg = required_argument,
666 .has_arg = no_argument,
  /external/blktrace/btreplay/
btrecord.c 126 .has_arg = required_argument,
132 .has_arg = required_argument,
138 .has_arg = no_argument,
144 .has_arg = no_argument,
150 .has_arg = required_argument,
156 .has_arg = required_argument,
162 .has_arg = required_argument,
168 .has_arg = no_argument,
174 .has_arg = no_argument,

Completed in 575 milliseconds

1 2 34 5 6