Home
last modified time | relevance | path

Searched refs:chptr (Results 1 – 2 of 2) sorted by relevance

/system/extras/tests/wifi/stress/
DwifiLoadScanAssoc.c131 char *chptr; in main() local
144 delayMin = strtod(optarg, &chptr); in main()
145 if ((*chptr != '\0') || (delayMin < 0.0)) { in main()
153 delayMax = strtod(optarg, &chptr); in main()
154 if ((*chptr != '\0') || (delayMax < 0.0)) { in main()
162 duration = strtod(optarg, &chptr); in main()
163 if ((*chptr != '\0') || (duration < 0.0)) { in main()
181 startPass = strtoul(optarg, &chptr, 10); in main()
182 if (*chptr != '\0') { in main()
200 endPass = strtoul(optarg, &chptr, 10); in main()
[all …]
/system/extras/tests/binder/benchmarks/
DbinderAddInts.cpp264 char *chptr; // character pointer for command-line parsing in main() local
270 int cpu = strtoul(optarg, &chptr, 10); in main()
271 if (*chptr != '\0') { in main()
290 options.iterDelay = strtod(optarg, &chptr); in main()
291 if ((*chptr != '\0') || (options.iterDelay < 0.0)) { in main()