Lines Matching refs:position
209 char *content, *position;
219 position = content;
221 position = strstr(position, "duration: ~");
222 if (!position)
224 position += strlen("duration: ~");
225 duration = get_llong_from_str(position);
229 position = strstr(position, "cpu:");
230 if (!position)
232 position += strlen("cpu: ");
233 cpu = get_llong_from_str(position);
237 position = strstr(position, "hitcount:");
238 if (!position)
240 position += strlen("hitcount: ");
241 counter = get_llong_from_str(position);