Home | History | Annotate | Download | only in stress

Lines Matching refs:chptr

130     char *chptr;
143 delayMin = strtod(optarg, &chptr);
144 if ((*chptr != '\0') || (delayMin < 0.0)) {
152 delayMax = strtod(optarg, &chptr);
153 if ((*chptr != '\0') || (delayMax < 0.0)) {
161 duration = strtod(optarg, &chptr);
162 if ((*chptr != '\0') || (duration < 0.0)) {
180 startPass = strtoul(optarg, &chptr, 10);
181 if (*chptr != '\0') {
199 endPass = strtoul(optarg, &chptr, 10);
200 if (*chptr != '\0') {
219 endPass = startPass = strtoul(optarg, &chptr, 10);
220 if (*chptr != '\0') {