Searched defs:optarg (Results 1 - 24 of 24) sorted by relevance

/external/libpcap/Win32/Src/
H A Dgetopt.c46 char *optarg; /* argument associated with option */ variable
98 optarg = NULL;
104 optarg = place;
116 optarg = nargv[optind];
/external/tcpdump/win32/Src/
H A Dgetopt.c46 char *optarg; /* argument associated with option */ variable
94 optarg = NULL;
100 optarg = place;
112 optarg = nargv[optind];
/external/bison/lib/
H A Dgetopt_int.h77 char *optarg;
76 char *optarg; member in struct:_getopt_data
H A Dgetopt.in.h60 # undef optarg macro
71 # define optarg __GETOPT_ID (optarg) macro
137 extern char *optarg;
178 a compiled-in constant, such as set a value from 'optarg', set the
216 takes an argument, to be placed in 'optarg'.
H A Dgetopt.c68 char *optarg;
318 ARGV-element, is returned in 'optarg'. Two colons mean an option that
320 it is returned in 'optarg', otherwise 'optarg' is set to zero.
359 d->optarg = NULL;
454 d->optarg = argv[d->optind++];
614 d->optarg = nameend + 1;
681 d->optarg = argv[d->optind++];
852 d->optarg = d->__nextchar;
896 d->optarg
67 char *optarg; variable
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dmbo_getopt.c44 int mbo_getopt(int argc, char* const *argv, const mbo_opt_struct opts[], char **optarg, int *optind, int show_err) argument
159 *optarg = argv[(*optind)++];
163 *optarg = &argv[*optind][arg_start];
/external/bison/darwin-lib/
H A Dgetopt.h61 # undef optarg macro
72 # define optarg __GETOPT_ID (optarg) macro
148 extern char *optarg;
189 a compiled-in constant, such as set a value from 'optarg', set the
227 takes an argument, to be placed in '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/qemu/
H A Dos-win32.c113 void os_parse_cmd_args(int index, const char *optarg) argument
H A Dos-posix.c177 void os_parse_cmd_args(int index, const char *optarg) argument
183 net_slirp_smb(optarg);
185 if (net_slirp_smb(optarg) < 0)
191 user_pwd = getpwnam(optarg);
193 fprintf(stderr, "User \"%s\" doesn't exist\n", optarg);
198 chroot_dir = optarg;
H A Darch_init.c564 void select_soundhw(const char *optarg) argument
568 if (*optarg == '?') {
576 exit(*optarg != '?');
584 if (!strcmp(optarg, "all")) {
591 p = optarg;
642 void select_soundhw(const char *optarg) argument
673 void do_acpitable_option(const char *optarg)
676 if (acpi_table_add(optarg) < 0) {
684 void do_smbios_option(const char *optarg) argument
687 if (smbios_entry_add(optarg) <
[all...]
H A Dvl-android.c1089 static void numa_add(const char *optarg) argument
1096 optarg = get_opt_name(option, 128, optarg, ',') + 1;
1098 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
1104 if (get_param_value(option, 128, "mem", optarg) == 0) {
1118 if (get_param_value(option, 128, "cpus", optarg) == 0) {
1719 net_slirp_forward(const char *optarg) argument
1726 char *argument = strdup(optarg), *p = argument;
1746 optarg);
1787 slirp_allow(const char *optarg, u_int8_ argument
2133 const char *r, *optarg; local
[all...]
/external/chromium_org/third_party/mesa/src/src/getopt/
H A Dgetopt_long.c62 char *optarg; /* argument associated with option */ variable
225 optarg = has_equal;
231 optarg = nargv[optind++];
235 && (optarg == NULL)) {
307 optarg = NULL;
339 optarg = nargv[optind++];
446 optarg = NULL;
448 optarg = place;
457 optarg = nargv[optind];
/external/lldb/tools/lldb-perf/darwin/sketch/
H A Dsketch.cpp78 ParseOption (int short_option, const char* optarg) argument
99 SBFileSpec file(optarg);
101 SetExecutablePath(optarg);
103 fprintf(stderr, "error: file specified in --sketch (-c) option doesn't exist: '%s'\n", optarg);
109 SBFileSpec file(optarg);
111 SetDocumentPath(optarg);
113 fprintf(stderr, "error: file specified in --foobar (-f) option doesn't exist: '%s'\n", optarg);
118 SetResultFilePath(optarg);
/external/lldb/tools/lldb-perf/lib/
H A DTestCase.h142 ParseOption (int short_option, const char* optarg) argument
/external/mesa3d/src/getopt/
H A Dgetopt_long.c62 char *optarg; /* argument associated with option */ variable
225 optarg = has_equal;
231 optarg = nargv[optind++];
235 && (optarg == NULL)) {
307 optarg = NULL;
339 optarg = nargv[optind++];
446 optarg = NULL;
448 optarg = place;
457 optarg = nargv[optind];
/external/ltrace/
H A Doptions.c427 parse_int(const char *optarg, char opt, int min, int max) argument
430 long int l = strtol(optarg, &endptr, 0);
432 || *optarg == 0 || *endptr != 0) {
436 fprintf(stderr, fmt, opt, optarg, min, max);
574 options.align = parse_int(optarg, 'a', 0, 0);
577 options.arraylen = parse_int(optarg, 'A', 0, 0);
591 if (optarg[0]=='h') {
595 options.debug = strtoul(optarg,&p,8);
603 parse_filter_chain(optarg, &options.plt_filter);
610 parse_colon_separated_list(optarg,
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.c250 char *optarg; variable
290 optarg = &argv[optind++][optchr + 1];
296 optarg = argv[optind++];
304 optarg = NULL;
/external/wpa_supplicant_8/src/utils/
H A Dcommon.c250 char *optarg; variable
290 optarg = &argv[optind++][optchr + 1];
296 optarg = argv[optind++];
304 optarg = NULL;
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dcommon.c250 char *optarg; variable
290 optarg = &argv[optind++][optchr + 1];
296 optarg = argv[optind++];
304 optarg = NULL;
/external/kernel-headers/original/uapi/sound/
H A Dsfnt_info.h44 short optarg; /* optional argument */ member in struct:soundfont_patch_info
53 #define SNDRV_SFNT_REPLACE_DATA 5 /* awe_sample_info (optarg=#channels)*/
56 #define SNDRV_SFNT_PROBE_DATA 8 /* optarg=sample */
57 #define SNDRV_SFNT_REMOVE_INFO 9 /* optarg=(bank<<8)|instr */
/external/netperf/
H A Dnetlib.c275 *optarg; /* argument associated with option */ variable
381 optarg = NULL;
387 optarg = place; /* no white space */
394 optarg = argv[optind]; /* white space */
/external/mksh/src/
H A Dsh.h957 #undef optarg macro
961 const char *optarg; member in struct:__anon28023
/external/valgrind/main/perf/
H A Dtinycc.c21441 const char *optarg, *p1, *r1;
21482 optarg = r1;
21486 optarg = argv[optind++];
21491 optarg = NULL;
21500 if (tcc_add_include_path(s, optarg) < 0)
21506 sym = (char *)optarg;
21516 tcc_undefine_symbol(s, optarg);
21519 tcc_add_library_path(s, optarg);
21523 tcc_lib_path = optarg;
21533 num_callers = atoi(optarg);
21439 const char *optarg, *p1, *r1; local
[all...]

Completed in 428 milliseconds