Lines Matching defs:cp
140 char *cp = buf;
141 if (*cp == '#')
144 if (isdigit(*cp)) {
145 int time = strtoul(cp, &cp, 0);
146 while (isspace(*cp))
147 cp += 1;
148 int threadId = strtoul(cp, &cp, 0);
152 indentEnd = cp;
155 if (indentEnd - cp + 1 > maxFrames)
156 maxFrames = indentEnd - cp + 1;
177 char *cp = buf;
180 if (*cp == '#')
184 if (!isdigit(*cp)) {
191 time = strtoul(cp, &cp, 0);
192 while (isspace(*cp))
193 cp += 1;
194 threadId = strtoul(cp, &cp, 0);
195 cp += 1;
206 save_cp = cp;
207 while (isspace(*cp)) {
208 cp += 1;
210 indent = cp - save_cp + 1;
214 save_cp = cp;
215 while (*cp != '\n')
216 cp += 1;
219 cp -= 1;
220 while (isspace(*cp))
221 cp -= 1;
222 cp += 1;
223 len = cp - save_cp;
230 cp = strchr(save_cp, '.');
231 if (cp) {
232 len = cp - save_cp;
235 save_cp = cp + 1;
236 cp = strchr(save_cp, ' ');
237 if (cp == NULL)
238 cp = strchr(save_cp, '\n');
239 if (cp && cp > save_cp) {
240 len = cp - save_cp;
242 save_cp = cp + 1;
243 cp = strchr(save_cp, ' ');
244 if (cp == NULL)
245 cp = strchr(save_cp, '\n');
246 if (cp && cp > save_cp) {
247 len = cp - save_cp;