Home | History | Annotate | Download | only in vm

Lines Matching defs:cp

203     char* cp = newStr;
208 while (*cp != '\0') {
209 if (*cp == '/') {
213 if (*cp == '.')
214 *cp = '/';
215 cp++;
699 char* cp = strchr(lineBuf, ')');
700 if (cp == NULL)
702 cp += 2;
703 pData->state = *cp++;
706 cp = strchr(cp+1, ' ');
707 if (cp == NULL)
715 pData->utime = strtoul(cp+1, &endp, 10);
716 if (endp == cp+1)
717 ALOGI("Warning: strtoul failed on utime ('%.30s...')", cp);
719 cp = strchr(cp+1, ' ');
720 if (cp == NULL)
723 pData->stime = strtoul(cp+1, &endp, 10);
724 if (endp == cp+1)
725 ALOGI("Warning: strtoul failed on stime ('%.30s...')", cp);
731 cp = strchr(cp+1, ' ');
732 if (cp == NULL)
739 pData->processor = strtol(cp+1, &endp, 10);
740 if (endp == cp+1)
741 ALOGI("Warning: strtoul failed on processor ('%.30s...')", cp);