HomeSort by relevance Sort by last modified time
    Searched refs:chptr (Results 1 - 11 of 11) sorted by null

  /external/oprofile/libpopt/
findme.c 17 char * start, * chptr; local
32 chptr = NULL;
35 if ((chptr = strchr(start, ':')))
36 *chptr = '\0';
42 if (chptr)
43 start = chptr + 1;
poptconfig.c 98 const char * file, * chptr, * end; local
129 chptr = file;
131 /*@-infloops@*/ /* LCL: can't detect chptr++ */
132 while (chptr < end) {
133 switch (*chptr) {
140 chptr++;
143 *dst++ = *chptr++;
144 if (chptr < end) {
145 if (*chptr == '\n')
146 dst--, chptr++;
    [all...]
  /system/extras/tests/wifi/stress/
wifiLoadScanAssoc.c 130 char *chptr; local
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)
    [all...]
  /frameworks/base/opengl/tests/hwc/
hwcStress.cpp 244 char *chptr; local
255 perSetDelay = strtod(optarg, &chptr);
256 if ((*chptr != '\0') || (perSetDelay < 0.0)) {
266 endDelay = strtod(optarg, &chptr);
267 if ((*chptr != '\0') || (endDelay < 0.0)) {
275 duration = strtod(optarg, &chptr);
276 if ((*chptr != '\0') || (duration < 0.0)) {
284 numSet = strtoul(optarg, &chptr, 10);
285 if (*chptr != '\0') {
300 startPass = strtoul(optarg, &chptr, 10)
    [all...]
hwcColorEquiv.cpp 170 char *chptr; local
187 endDelay = strtod(optarg, &chptr);
188 if ((*chptr != '\0') || (endDelay < 0.0)) {