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

1 2 34 5 6 7 8 91011>>

  /system/core/toolbox/
log.c 110 tag = optarg;
114 priority = filterCharToPri(optarg[0]);
  /system/extras/tests/binder/benchmarks/
binderAddInts.cpp 121 int cpu = strtoul(optarg, &chptr, 10);
124 << " option of: " << optarg << endl;
130 cerr << "CPU " << optarg << " not currently available" << endl;
141 options.iterations = strtoul(optarg, &chptr, 10);
143 cerr << "Invalid iterations specified of: " << optarg << endl;
148 << optarg << endl;
154 options.iterDelay = strtod(optarg, &chptr);
156 cerr << "Invalid delay specified of: " << optarg << endl;
  /external/bluetooth/bluez/compat/
dund.c 456 dst = strdup(optarg);
462 if (optarg)
463 search_duration = atoi(optarg);
469 dst = strdup(optarg);
479 channel = atoi(optarg);
483 src = strdup(optarg);
511 if (optarg)
512 persist = atoi(optarg);
518 if (optarg)
519 use_cache = atoi(optarg);
    [all...]
  /frameworks/base/opengl/tests/hwc/
hwcStress.cpp 255 perSetDelay = strtod(optarg, &chptr);
258 "%s", optarg);
266 endDelay = strtod(optarg, &chptr);
269 "of: %s", optarg);
275 duration = strtod(optarg, &chptr);
278 optarg);
284 numSet = strtoul(optarg, &chptr, 10);
287 "of: %s", optarg);
300 startPass = strtoul(optarg, &chptr, 10);
303 "of: %s", optarg);
    [all...]
  /ndk/
ndk-gdb 135 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
151 optarg=`expr -- "$opt" : '-s\(.*\)'`
152 ADB_FLAGS=" -s $optarg"
160 optarg=`expr -- "$opt" : '-p\(.*\)'`
161 OPTION_PROJECT="$optarg"
164 OPTION_EXEC="$optarg"
172 optarg=`expr -- "$opt" : '-x\(.*\)'`
173 OPTION_EXEC="$optarg"
184 OPTION_ADB="$optarg"
187 AWK_CMD="$optarg"
    [all...]
  /external/iptables/extensions/
libxt_RATEEST.c 100 strncpy(info->name, optarg, sizeof(info->name) - 1);
109 if (RATEEST_get_time(&interval, optarg) < 0)
111 "RATEEST: bad interval value `%s'", optarg);
121 if (RATEEST_get_time(&ewma_log, optarg) < 0)
123 "RATEEST: bad ewmalog value `%s'", optarg);
libxt_SET.c 70 if (xtables_check_inverse(optarg, &invert, NULL, 0, argv))
79 if (strlen(optarg) > IPSET_MAXNAMELEN - 1)
82 optarg, IPSET_MAXNAMELEN - 1);
84 get_set_byname(optarg, (struct xt_set_info *)info);
177 if (xtables_check_inverse(optarg, &invert, NULL, 0, argv))
186 if (strlen(optarg) > IPSET_MAXNAMELEN - 1)
189 optarg, IPSET_MAXNAMELEN - 1);
191 get_set_byname(optarg, info);
327 if (!xtables_strtoui(optarg, NULL, &timeout, 0, UINT32_MAX - 1))
  /bionic/libc/unistd/
getopt_long.c 72 char *optarg; /* argument associated with option */ variable
239 optarg = has_equal;
245 optarg = nargv[optind++];
249 && (optarg == NULL)) {
322 optarg = NULL;
354 optarg = nargv[optind++];
461 optarg = NULL;
463 optarg = place;
473 optarg = nargv[optind];
481 optarg = nargv[++optind]
    [all...]
  /system/extras/tests/sdcard/
sdcard_perf_test.cpp 83 extern char *optarg;
220 testCase->setDataSize(atoi(optarg) * 1024);
223 testCase->setChunkSize(atoi(optarg) * 1024);
226 testCase->setIter(atoi(optarg));
230 testCase->setNproc(atoi(optarg));
234 testCase->setTypeFromName(optarg);
245 if (strcmp("sync", optarg) == 0) {
247 } else if (strcmp("fsync", optarg) == 0) {
262 testCase->setFadvise(optarg);
268 fprintf(stderr, "Unknown option %s\n", optarg);
    [all...]
  /external/bluetooth/bluez/tools/
l2ping.c 274 if (!strncasecmp(optarg, "hci", 3))
275 hci_devba(atoi(optarg + 3), &bdaddr);
277 str2ba(optarg, &bdaddr);
281 delay = atoi(optarg);
299 count = atoi(optarg);
303 timeout = atoi(optarg);
307 size = atoi(optarg);
  /external/ipsec-tools/src/racoon/
plainrsa-gen.c 227 extern char *optarg;
235 if (strncmp(optarg, "0x", 2) == 0)
236 sscanf(optarg, "0x%x", &pubexp);
238 pubexp = atoi(optarg);
241 bits = atoi(optarg);
244 fname = optarg;
247 finput = optarg;
  /system/extras/tests/framebuffer/
mdp_test.c 198 if (parse_geometry(optarg, &srcw, &srch, &srcx, &srcy)) {
206 if (parse_geometry(optarg, &dstw, &dsth, &dstx, &dsty)) {
214 if (parse_geometry(optarg, &src_imgw, &src_imgh, NULL, NULL)) {
222 if (parse_geometry(optarg, &dst_imgw, &dst_imgh, NULL, NULL)) {
235 if (open_file(optarg, &file_fd, &file_len, &src_fmt) < 0) {
259 if (!strncmp(optarg, "yuv420", 6))
262 else if (!strncmp(optarg, "rgb565", 6))
  /external/qemu/
vl.c 1188 static void numa_add(const char *optarg)
1195 optarg = get_opt_name(option, 128, optarg, ',') + 1;
1197 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
1203 if (get_param_value(option, 128, "mem", optarg) == 0) {
1217 if (get_param_value(option, 128, "cpus", optarg) == 0) {
2079 const char *r, *optarg; local
    [all...]
  /external/iptables/iptables/
ip6tables.c     [all...]
iptables.c     [all...]
  /external/e2fsprogs/misc/
tune2fs.c 35 extern char *optarg;
606 max_mount_count = strtol(optarg, &tmp, 0);
610 optarg);
619 mount_count = strtoul(optarg, &tmp, 0);
623 optarg);
630 if (strcmp(optarg, "continue") == 0)
632 else if (strcmp(optarg, "remount-ro") == 0)
634 else if (strcmp(optarg, "panic") == 0)
639 optarg);
646 extended_cmd = optarg;
    [all...]
uuidgen.c 20 extern char *optarg;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/
build-hardy-toolchain.sh 196 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
209 --ubuntu-mirror=*) UBUNTU_MIRROR="$optarg"
211 --ubuntu-release=*) UBUNTU_RELEASE="$optarg"
213 --prefix=*) PREFIX_DIR="$optarg"
215 --work-dir=*) WORK_DIR="$optarg"
217 --gcc-version=*) GCC_VERSION="$optarg"
219 --binutils-version=*) BINUTILS_VERSION="$optarg"
221 --gmp-version=*) GMP_VERSION="$optarg"
223 --mpfr-version=*) MPFR_VERSION="$optarg"
225 --git=*) GIT_CMD=$optarg
    [all...]
  /development/tools/emulator/opengl/host/tools/emugen/
main.cpp 52 wrapperDir = std::string(optarg);
62 encoderDir = std::string(optarg);
65 decoderDir = std::string(optarg);
68 inDir = std::string(optarg);
  /device/moto/wingray/taudio/
twav.c 94 output = strdup(optarg);
97 num_channels = atoi(optarg);
101 bits_per_sample = atoi(optarg);
104 sampling_rate = atoi(optarg);
  /external/bison/lib/
getopt_int.h 42 char *optarg;
41 char *optarg; member in struct:_getopt_data
  /external/e2fsprogs/debugfs/
unused.c 22 extern char *optarg;
  /external/e2fsprogs/include/nonunix/
getopt.h 37 extern GETOPT_VARIABLE char *optarg;
77 a compiled-in constant, such as set a value from `optarg', set the
  /external/e2fsprogs/lib/blkid/
dev.c 188 extern char *optarg;
213 file = optarg;
216 blkid_debug_mask = strtoul (optarg, &tmp, 0);
219 optarg);
  /external/llvm/utils/
makellvm 39 set optarg = `echo -n $argv[1] | sed 's/^[^=]*$//'`
40 if ($#optarg) then
41 set GMAKE_OPTS = ( $GMAKE_OPTS $optarg )

Completed in 963 milliseconds

1 2 34 5 6 7 8 91011>>