Lines Matching refs:start
59 long long get_llong_from_str(char *start)
65 value = strtoll(start, &end, 10);
66 if (errno || start == end)
315 * sched_attr *attr to the threads that start with char *comm_prefix. It is
360 static long get_long_ns_after_colon(char *start)
365 start = strstr(start, ":");
366 if (!start)
370 start++;
371 val = parse_ns_duration(start);
376 static long get_long_after_colon(char *start)
381 start = strstr(start, ":");
382 if (!start)
386 start++;
387 val = get_llong_from_str(start);
573 char path[MAX_PATH], *start;
589 start = path;
591 start = strstr(start, ":");
592 if (!start)
596 start++;
598 start = strstr(start, ":");
599 if (!start)
603 start++;
605 if (strlen(start) >= sizeof_self_cg)
608 snprintf(self_cg, sizeof_self_cg, "%s", start);
611 start = strstr(self_cg, "\n");
614 if (!start)
618 *start = '\0';