HomeSort by relevance Sort by last modified time
    Searched refs:optarg (Results 1 - 25 of 321) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/emulator/qtools/
parse_options.cpp 58 if (*optarg == ':') {
59 if (strcmp(optarg, ":kernel") == 0)
61 else if (strcmp(optarg, ":libs") == 0)
65 excluded_procedures.Update(optarg, 1);
67 } else if (isdigit(*optarg)) {
68 int bitnum = atoi(optarg);
72 excluded_procedures.Update(optarg, 1);
77 if (*optarg == ':') {
78 if (strcmp(optarg, ":kernel") == 0)
80 else if (strcmp(optarg, ":libs") == 0
    [all...]
  /prebuilt/linux-x86/sdl/bin/
sdl-config 21 -*=*) 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
  /prebuilt/windows/sdl/bin/
sdl-config 21 -*=*) 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
  /development/tools/yuv420sp2rgb/
cmdline.c 9 extern char *optarg;
87 INFO ("option -%c with value `%s'\n", c, (optarg ?: "(null)"));
91 ASSERT(optarg); \
92 (*name) = strdup(optarg); \
96 ASSERT(optarg); \
97 if (strlen(optarg) >= 2 && optarg[0] == '0' && optarg[1] == 'x') { \
98 FAILIF(1 != sscanf(optarg+2, "%x", val), \
101 FAILIF(1 != sscanf(optarg, "%d", val),
    [all...]
  /system/extras/ext4_utils/
make_ext4fs_main.c 53 info.len = parse_num(optarg);
56 info.journal_blocks = parse_num(optarg);
59 info.block_size = parse_num(optarg);
62 info.blocks_per_group = parse_num(optarg);
65 info.inodes = parse_num(optarg);
68 info.inode_size = parse_num(optarg);
71 info.label = optarg;
78 mountpoint = optarg;
  /external/qemu/distrib/sdl-1.2.12/
sdl-config.in 21 -*=*) 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
  /prebuilt/darwin-x86/sdl/bin/
sdl-config 21 -*=*) 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
  /build/tools/apriori/
cmdline.c 9 extern char *optarg;
108 INFO ("option -%c with value `%s'\n", c, (optarg ?: "(null)"));
112 ASSERT(optarg); \
113 (*name) = strdup(optarg); \
126 ASSERT(optarg); \
127 if (strlen(optarg) >= 2 && optarg[0] == '0' && optarg[1] == 'x') { \
128 FAILIF(1 != sscanf(optarg+2, "%x", val), \
131 FAILIF(1 != sscanf(optarg, "%d", val),
    [all...]
  /external/webkit/WebKit/android/benchmark/
main.cpp 46 char* x = strchr(optarg, 'x');
48 width = atoi(optarg);
53 reloadCount = atoi(optarg);
  /external/qemu/distrib/
build-emulator.sh 12 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
16 --target=*) TARGET=$optarg
  /build/tools/lsd/
cmdline.c 9 extern char *optarg;
86 INFO ("option -%c with value `%s'\n", c, (optarg ?: "(null)"));
90 ASSERT(optarg); \
91 (*name) = strdup(optarg); \
100 if (optarg)
101 INFO (" with arg %s", optarg);
  /external/iptables/extensions/
libipt_ULOG.c 86 if (check_inverse(optarg, &invert, NULL, 0))
89 group_d = atoi(optarg);
104 if (check_inverse(optarg, &invert, NULL, 0))
108 if (strlen(optarg) > sizeof(loginfo->prefix) - 1)
113 if (strlen(optarg) == 0)
117 if (strlen(optarg) != strlen(strtok(optarg, "\n")))
121 strcpy(loginfo->prefix, optarg);
128 if (atoi(optarg) < 0)
132 loginfo->copy_range = (unsigned long long)atoll(optarg);
    [all...]
libipt_REJECT.c 112 if (check_inverse(optarg, &invert, NULL, 0))
116 if ((strncasecmp(reject_table[i].name, optarg, strlen(optarg)) == 0)
117 || (strncasecmp(reject_table[i].alias, optarg, strlen(optarg)) == 0)) {
123 if (strncasecmp("echo-reply", optarg, strlen(optarg)) == 0
124 || strncasecmp("echoreply", optarg, strlen(optarg)) == 0)
127 exit_error(PARAMETER_PROBLEM, "unknown reject type `%s'",optarg);
    [all...]
libip6t_owner.c 65 check_inverse(optarg, &invert, &optind, 0);
67 if ((pwd = getpwnam(optarg)))
70 ownerinfo->uid = strtoul(optarg, &end, 0);
71 if (*end != '\0' || end == optarg)
72 exit_error(PARAMETER_PROBLEM, "Bad OWNER UID value `%s'", optarg);
81 check_inverse(optarg, &invert, &optind, 0);
82 if ((grp = getgrnam(optarg)))
85 ownerinfo->gid = strtoul(optarg, &end, 0);
86 if (*end != '\0' || end == optarg)
87 exit_error(PARAMETER_PROBLEM, "Bad OWNER GID value `%s'", optarg);
    [all...]
libipt_owner.c 67 check_inverse(optarg, &invert, &optind, 0);
68 if ((pwd = getpwnam(optarg)))
71 ownerinfo->uid = strtoul(optarg, &end, 0);
72 if (*end != '\0' || end == optarg)
73 exit_error(PARAMETER_PROBLEM, "Bad OWNER UID value `%s'", optarg);
82 check_inverse(optarg, &invert, &optind, 0);
83 if ((grp = getgrnam(optarg)))
86 ownerinfo->gid = strtoul(optarg, &end, 0);
87 if (*end != '\0' || end == optarg)
88 exit_error(PARAMETER_PROBLEM, "Bad OWNER GID value `%s'", optarg);
    [all...]
  /external/blktrace/btt/
args.c 297 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...]
  /external/wpa_supplicant/
main.c 155 iface->bridge_ifname = optarg;
161 iface->confname = optarg;
164 iface->ctrl_interface = optarg;
167 iface->driver = optarg;
181 params.wpa_debug_file_path = optarg;
185 params.ctrl_interface = optarg;
192 iface->ifname = optarg;
202 iface->driver_param = optarg;
206 params.pid_file = os_rel2abs_path(optarg);
  /external/wpa_supplicant_6/wpa_supplicant/
main.c 141 iface->bridge_ifname = optarg;
147 iface->confname = optarg;
150 iface->ctrl_interface = optarg;
153 iface->driver = optarg;
167 params.wpa_debug_file_path = optarg;
171 params.ctrl_interface = optarg;
178 iface->ifname = optarg;
188 iface->driver_param = optarg;
192 params.pid_file = os_rel2abs_path(optarg);
  /build/tools/soslim/
cmdline.c 9 extern char *optarg;
102 INFO ("option -%c with value `%s'\n", c, (optarg ?: "(null)"));
106 ASSERT(optarg); \
107 *name = strdup(optarg); \
116 if (optarg)
117 INFO (" with arg %s", optarg);
  /external/bison/src/
getargs.c 383 if (optarg)
384 spec_graph_file = AS_FILE_NAME (optarg);
392 skeleton = AS_FILE_NAME (optarg);
396 include = AS_FILE_NAME (optarg);
402 if (optarg)
403 spec_defines_file = AS_FILE_NAME (optarg);
427 spec_outfile = AS_FILE_NAME (optarg);
431 spec_file_prefix = AS_FILE_NAME (optarg);
435 spec_name_prefix = optarg;
439 report_argmatch (optarg);
    [all...]
  /bionic/libc/include/
getopt.h 76 extern char *optarg; /* getopt(3) external variables */
  /development/ndk/platforms/android-3/include/
getopt.h 76 extern char *optarg; /* getopt(3) external variables */
  /external/bison/lib/
getopt_.h 42 # undef optarg macro
52 # define optarg __GETOPT_ID (optarg) macro
114 extern char *optarg;
155 a compiled-in constant, such as set a value from `optarg', set the
190 takes an argument, to be placed in `optarg'.
  /external/grub/lib/
getopt1.c 136 if (optarg)
137 printf (" with arg %s", optarg);
166 printf ("option c with value `%s'\n", optarg);
170 printf ("option d with value `%s'\n", optarg);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
getopt.h 76 extern char *optarg; /* getopt(3) external variables */

Completed in 559 milliseconds

1 2 3 4 5 6 7 8 91011>>