ostr             1886 tools/perf/builtin-record.c 	const char *ostr = str;
ostr             1920 tools/perf/builtin-record.c 	ui__warning("unknown clockid %s, check man page\n", ostr);
ostr               36 tools/perf/tests/time-utils-test.c static bool test__perf_time__parse_str(const char *ostr, u64 start, u64 end)
ostr               41 tools/perf/tests/time-utils-test.c 	pr_debug("\nperf_time__parse_str(\"%s\")\n", ostr);
ostr               43 tools/perf/tests/time-utils-test.c 	err = perf_time__parse_str(&ptime, ostr);
ostr               67 tools/perf/util/time-utils.c static int split_start_end(char **start, char **end, const char *ostr, char ch)
ostr               72 tools/perf/util/time-utils.c 	if (ostr == NULL || *ostr == '\0')
ostr               76 tools/perf/util/time-utils.c 	str = strdup(ostr);
ostr               94 tools/perf/util/time-utils.c int perf_time__parse_str(struct perf_time_interval *ptime, const char *ostr)
ostr               99 tools/perf/util/time-utils.c 	rc = split_start_end(&start_str, &end_str, ostr, ',');
ostr              121 tools/perf/util/time-utils.c 				 const char *ostr, int size)
ostr              128 tools/perf/util/time-utils.c 	for (cp = ostr; *cp; cp++)
ostr              136 tools/perf/util/time-utils.c 	str = strdup(ostr);
ostr              283 tools/perf/util/time-utils.c 			       const char *ostr, u64 start, u64 end,
ostr              289 tools/perf/util/time-utils.c 	str = strdup(ostr);
ostr              328 tools/perf/util/time-utils.c 			       const char *ostr, u64 start, u64 end, char *c)
ostr              331 tools/perf/util/time-utils.c 	int len = strlen(ostr), ret;
ostr              337 tools/perf/util/time-utils.c 	if (ostr + len - 1 != c)
ostr              347 tools/perf/util/time-utils.c 	memcpy(str, ostr, len);
ostr              359 tools/perf/util/time-utils.c 				 const char *ostr, u64 start, u64 end)
ostr              372 tools/perf/util/time-utils.c 	c = strchr(ostr, '/');
ostr              374 tools/perf/util/time-utils.c 		return percent_comma_split(ptime_buf, num, ostr, start,
ostr              378 tools/perf/util/time-utils.c 	c = strchr(ostr, '-');
ostr              380 tools/perf/util/time-utils.c 		return percent_comma_split(ptime_buf, num, ostr, start,
ostr              384 tools/perf/util/time-utils.c 	c = strchr(ostr, '%');
ostr              386 tools/perf/util/time-utils.c 		return one_percent_convert(ptime_buf, ostr, start, end, c);
ostr              391 tools/perf/util/time-utils.c struct perf_time_interval *perf_time__range_alloc(const char *ostr, int *size)
ostr              400 tools/perf/util/time-utils.c 	if (!ostr)
ostr              403 tools/perf/util/time-utils.c 	p1 = ostr;
ostr              404 tools/perf/util/time-utils.c 	while (p1 < ostr + strlen(ostr)) {
ostr               15 tools/perf/util/time-utils.h int perf_time__parse_str(struct perf_time_interval *ptime, const char *ostr);
ostr               18 tools/perf/util/time-utils.h 				 const char *ostr, u64 start, u64 end);
ostr               20 tools/perf/util/time-utils.h struct perf_time_interval *perf_time__range_alloc(const char *ostr, int *size);