Searched refs:optarg (Results 1 - 25 of 272) sorted by relevance

1234567891011

/external/libnl/src/
H A Dnf-ct-list.c107 case 'f': params.dp_type = nl_cli_parse_dumptype(optarg); break;
110 case 'i': nl_cli_ct_parse_id(ct, optarg); break;
111 case 'p': nl_cli_ct_parse_protocol(ct, optarg); break;
112 case ARG_TCP_STATE: nl_cli_ct_parse_tcp_state(ct, optarg); break;
113 case ARG_ORIG_SRC: nl_cli_ct_parse_src(ct, 0, optarg); break;
114 case ARG_ORIG_SPORT: nl_cli_ct_parse_src_port(ct, 0, optarg); break;
115 case ARG_ORIG_DST: nl_cli_ct_parse_dst(ct, 0, optarg); break;
116 case ARG_ORIG_DPORT: nl_cli_ct_parse_dst_port(ct, 0, optarg); break;
117 case ARG_REPLY_SRC: nl_cli_ct_parse_src(ct, 1, optarg); break;
118 case ARG_REPLY_SPORT: nl_cli_ct_parse_src_port(ct, 1, optarg); brea
[all...]
H A Dnl-route-list.c105 case 'f': params.dp_type = nl_cli_parse_dumptype(optarg); break;
108 case 'd': nl_cli_route_parse_dst(route, optarg); break;
109 case 'n': nl_cli_route_parse_nexthop(route, optarg, link_cache); break;
110 case 't': nl_cli_route_parse_table(route, optarg); break;
111 case ARG_FAMILY: nl_cli_route_parse_family(route, optarg); break;
112 case ARG_SRC: nl_cli_route_parse_src(route, optarg); break;
113 case ARG_IIF: nl_cli_route_parse_iif(route, optarg, link_cache); break;
114 case ARG_PREF_SRC: nl_cli_route_parse_pref_src(route, optarg); break;
115 case ARG_METRICS: nl_cli_route_parse_metric(route, optarg); break;
116 case ARG_PRIORITY: nl_cli_route_parse_prio(route, optarg); brea
[all...]
H A Dnl-route-add.c108 case 'd': nl_cli_route_parse_dst(route, optarg); break;
109 case 'n': nl_cli_route_parse_nexthop(route, optarg, link_cache); break;
110 case 't': nl_cli_route_parse_table(route, optarg); break;
111 case ARG_FAMILY: nl_cli_route_parse_family(route, optarg); break;
112 case ARG_SRC: nl_cli_route_parse_src(route, optarg); break;
113 case ARG_IIF: nl_cli_route_parse_iif(route, optarg, link_cache); break;
114 case ARG_PREF_SRC: nl_cli_route_parse_pref_src(route, optarg); break;
115 case ARG_METRICS: nl_cli_route_parse_metric(route, optarg); break;
116 case ARG_PRIORITY: nl_cli_route_parse_prio(route, optarg); break;
117 case ARG_SCOPE: nl_cli_route_parse_scope(route, optarg); brea
[all...]
H A Dnl-link-list.c91 case 'f': params.dp_type = nl_cli_parse_dumptype(optarg); break;
94 case 'n': nl_cli_link_parse_name(link, optarg); break;
95 case 'i': nl_cli_link_parse_ifindex(link, optarg); break;
96 case ARG_FAMILY: nl_cli_link_parse_family(link, optarg); break;
97 case ARG_MTU: nl_cli_link_parse_mtu(link, optarg); break;
98 case ARG_TXQLEN: nl_cli_link_parse_txqlen(link, optarg); break;
99 case ARG_WEIGHT: nl_cli_link_parse_weight(link, optarg); break;
H A Dnl-addr-add.c98 case 'a': nl_cli_addr_parse_local(addr, optarg); break;
99 case 'd': nl_cli_addr_parse_dev(addr, link_cache, optarg); break;
100 case ARG_FAMILY: nl_cli_addr_parse_family(addr, optarg); break;
101 case ARG_LABEL: nl_cli_addr_parse_label(addr, optarg); break;
102 case ARG_PEER: nl_cli_addr_parse_peer(addr, optarg); break;
103 case ARG_SCOPE: nl_cli_addr_parse_scope(addr, optarg); break;
104 case ARG_BROADCAST: nl_cli_addr_parse_broadcast(addr, optarg); break;
105 case ARG_PREFERRED: nl_cli_addr_parse_preferred(addr, optarg); break;
106 case ARG_VALID: nl_cli_addr_parse_valid(addr, optarg); break;
H A Dnl-addr-delete.c122 case 'a': nl_cli_addr_parse_local(addr, optarg); break;
123 case 'd': nl_cli_addr_parse_dev(addr, link_cache, optarg); break;
124 case ARG_FAMILY: nl_cli_addr_parse_family(addr, optarg); break;
125 case ARG_LABEL: nl_cli_addr_parse_label(addr, optarg); break;
126 case ARG_PEER: nl_cli_addr_parse_peer(addr, optarg); break;
127 case ARG_SCOPE: nl_cli_addr_parse_scope(addr, optarg); break;
128 case ARG_BROADCAST: nl_cli_addr_parse_broadcast(addr, optarg); break;
129 case ARG_PREFERRED: nl_cli_addr_parse_preferred(addr, optarg); break;
130 case ARG_VALID: nl_cli_addr_parse_valid(addr, optarg); break;
H A Dnl-route-delete.c141 case 'd': nf++; nl_cli_route_parse_dst(route, optarg); break;
142 case 'n': nf++; nl_cli_route_parse_nexthop(route, optarg, link_cache); break;
143 case 't': nf++; nl_cli_route_parse_table(route, optarg); break;
144 case ARG_FAMILY: nf++; nl_cli_route_parse_family(route, optarg); break;
145 case ARG_SRC: nf++; nl_cli_route_parse_src(route, optarg); break;
146 case ARG_IIF: nf++; nl_cli_route_parse_iif(route, optarg, link_cache); break;
147 case ARG_PREF_SRC: nf++; nl_cli_route_parse_pref_src(route, optarg); break;
148 case ARG_METRICS: nf++; nl_cli_route_parse_metric(route, optarg); break;
149 case ARG_PRIORITY: nf++; nl_cli_route_parse_prio(route, optarg); break;
150 case ARG_SCOPE: nf++; nl_cli_route_parse_scope(route, optarg); brea
[all...]
H A Dnl-cls-list.c96 case 'f': params.dp_type = nlt_parse_dumptype(optarg); break;
99 case 'd': dev = 1; parse_dev(cls, link_cache, optarg); break;
100 case 'p': parse_parent(cls, optarg); break;
101 case ARG_PRIO: parse_prio(cls, optarg); break;
102 case ARG_ID: parse_handle(cls, optarg); break;
103 case ARG_PROTO: parse_proto(cls, optarg); break;
H A Dnl-link-set.c109 case 'n': ok++; nl_cli_link_parse_name(link, optarg); break;
110 case 'i': ok++; nl_cli_link_parse_ifindex(link, optarg); break;
111 case ARG_RENAME: nl_cli_link_parse_name(change, optarg); break;
112 case ARG_MTU: nl_cli_link_parse_mtu(link, optarg); break;
113 case ARG_TXQLEN: nl_cli_link_parse_txqlen(link, optarg); break;
114 case ARG_WEIGHT: nl_cli_link_parse_weight(link, optarg); break;
H A Dnl-neigh-list.c75 case 'f': params.dp_type = nl_cli_parse_dumptype(optarg); break;
78 case 'a': nl_cli_neigh_parse_dst(neigh, optarg); break;
79 case 'l': nl_cli_neigh_parse_lladdr(neigh, optarg); break;
80 case 'd': nl_cli_neigh_parse_dev(neigh, link_cache, optarg); break;
81 case ARG_FAMILY: nl_cli_neigh_parse_family(neigh, optarg); break;
82 case ARG_STATE: nl_cli_neigh_parse_state(neigh, optarg); break;
H A Dnl-cls-add.c82 case 'd': parse_dev(cls, link_cache, optarg); break;
83 case 'p': parse_parent(cls, optarg); break;
84 case ARG_PRIO: parse_prio(cls, optarg); break;
85 case ARG_ID: parse_handle(cls, optarg); break;
86 case ARG_PROTO: parse_proto(cls, optarg); break;
H A Dnl-neigh-delete.c108 case 'a': nl_cli_neigh_parse_dst(neigh, optarg); break;
109 case 'l': nl_cli_neigh_parse_lladdr(neigh, optarg); break;
110 case 'd': nl_cli_neigh_parse_dev(neigh, link_cache, optarg); break;
111 case ARG_FAMILY: nl_cli_neigh_parse_family(neigh, optarg); break;
112 case ARG_STATE: nl_cli_neigh_parse_state(neigh, optarg); break;
H A Dnl-qdisc-list.c76 case 'f': params.dp_type = nl_cli_parse_dumptype(optarg); break;
80 case 'd': nl_cli_qdisc_parse_dev(qdisc, link_cache, optarg); break;
81 case 'p': nl_cli_qdisc_parse_parent(qdisc, optarg); break;
82 case 'H': nl_cli_qdisc_parse_handle(qdisc, optarg); break;
83 case 'k': nl_cli_qdisc_parse_kind(qdisc, optarg); break;
/external/f2fs-tools/mkfs/
H A Df2fs_format_main.c51 config.heap = atoi(optarg);
56 config.dbg_lv = atoi(optarg);
60 config.extension_list = strdup(optarg);
64 if (strlen(optarg) > 512) {
69 config.vol_label = optarg;
73 config.overprovision = atoi(optarg);
75 atoi(optarg));
78 config.segs_per_sec = atoi(optarg);
80 atoi(optarg));
83 config.secs_per_zone = atoi(optarg);
[all...]
/external/qemu/include/sysemu/
H A Darch_init.h24 void select_soundhw(const char *optarg);
25 void do_acpitable_option(const char *optarg);
26 void do_smbios_option(const char *optarg);
/external/libusb-compat/
H A Dlibusb-config.in29 -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
30 *) optarg= ;;
35 prefix=$optarg
37 exec_prefix=$optarg
44 exec_prefix=$optarg
/external/qemu/distrib/sdl-1.2.15/
H A Dsdl-config.in21 -*=*) optarg=`echo "$1" | LC_ALL="C" sed 's/[-_a-zA-Z0-9]*=//'` ;;
22 *) optarg= ;;
27 prefix=$optarg
29 exec_prefix=$optarg
36 exec_prefix=$optarg
/external/lldb/tools/lldb-platform/
H A Dlldb-platform.cpp126 // optarg ? optarg : "");
133 if (optarg && optarg[0])
135 if ((strcasecmp(optarg, "stdout") == 0) || (strcmp(optarg, "/dev/stdout") == 0))
139 else if ((strcasecmp(optarg, "stderr") == 0) || (strcmp(optarg, "/dev/stderr") == 0))
145 FILE *log_file = fopen(optarg, "w");
154 fprintf (stderr, "Failed to open log file '%s' for writing: errno = %i (%s)", optarg, errn
[all...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/test/
H A Drand_gen.c71 extern char *optarg;
94 status = crypto_kernel_set_debug_module(optarg, 1);
96 printf("error: set debug module (%s) failed\n", optarg);
104 num_octets = atoi(optarg);
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dmbo_getopt.h19 int mbo_getopt(int argc, char* const *argv, const mbo_opt_struct opts[], char **optarg, int *optind, int show_err);
/external/srtp/crypto/test/
H A Drand_gen.c71 extern char *optarg;
94 status = crypto_kernel_set_debug_module(optarg, 1);
96 printf("error: set debug module (%s) failed\n", optarg);
104 num_octets = atoi(optarg);
/external/fio/lib/
H A Dgetopt_long.c19 char *optarg = NULL; variable
49 optarg = NULL;
98 optarg = (char *)opt_end+1;
102 if (!(optarg = argv[optind]))
127 optarg = (char *)pvt.optptr;
134 optarg = (char *)argv[optind+1];
137 optarg = NULL;
142 optarg = (char *)argv[optind+1];
/external/wpa_supplicant_8/wpa_supplicant/
H A Dmain.c183 iface->bridge_ifname = optarg;
189 iface->confname = optarg;
192 iface->ctrl_interface = optarg;
195 iface->driver = optarg;
208 params.entropy_file = optarg;
212 params.wpa_debug_file_path = optarg;
216 params.ctrl_interface = optarg;
219 params.ctrl_interface_group = optarg;
226 iface->ifname = optarg;
229 iface->confanother = optarg;
[all...]
/external/libmtp/examples/
H A Dconnect.c128 printf("Delete %s\n",optarg);
129 delfile_function(optarg);
133 printf("Send file %s\n",optarg);
134 split_arg(optarg,&arg1,&arg2);
139 printf("Get file %s\n",optarg);
140 split_arg(optarg,&arg1,&arg2);
145 printf("New folder %s\n",optarg);
146 newfolder_function(optarg);
150 printf("Send track %s\n",optarg);
151 split_arg(optarg,
[all...]
/external/blktrace/btt/
H A Dargs.c297 bno_dump_name = optarg;
300 sscanf(optarg, "%lf", &range_delta);
303 devices = optarg;
306 exes = optarg;
312 input_name = optarg;
315 d2c_name = optarg;
318 plat_freq = atof(optarg);
321 iostat_name = strdup(optarg);
324 sps_name = optarg;
327 if (dev_map_read(optarg))
[all...]

Completed in 382 milliseconds

1234567891011