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++;
700 char* cp = strchr(lineBuf, ')');
701 if (cp == NULL)
703 cp += 2;
704 pData->state = *cp++;
707 cp = strchr(cp+1, ' ');
708 if (cp == NULL)
716 pData->utime = strtoul(cp+1, &endp, 10);
717 if (endp == cp+1)
718 ALOGI("Warning: strtoul failed on utime ('%.30s...')", cp);
720 cp = strchr(cp+1, ' ');
721 if (cp == NULL)
724 pData->stime = strtoul(cp+1, &endp, 10);
725 if (endp == cp+1)
726 ALOGI("Warning: strtoul failed on stime ('%.30s...')", cp);
732 cp = strchr(cp+1, ' ');
733 if (cp == NULL)
740 pData->processor = strtol(cp+1, &endp, 10);
741 if (endp == cp+1)
742 ALOGI("Warning: strtoul failed on processor ('%.30s...')", cp);