Lines Matching defs:start_time
277 evsel->duration_time.start_time = INVALID_START_TIME;
280 evsel->duration_time.start_time = rdclock();
295 __u64 *start_time = NULL;
318 start_time = xyarray__entry(evsel->process_time.start_times, idx,
326 *start_time = INVALID_START_TIME;
329 err = tool_pmu__read_stat(evsel, idx, thread, start_time);
530 evsel->duration_time.start_time = rdclock();
537 __u64 *start_time = xyarray__entry(evsel->process_time.start_times,
544 *start_time = val;
546 *start_time = INVALID_START_TIME;
578 __u64 delta = rdclock() - evsel->duration_time.start_time;
588 __u64 *start_time = xyarray__entry(evsel->process_time.start_times,
597 if (*start_time != INVALID_START_TIME && val >= *start_time)
598 *accumulated_time += (val - *start_time);
600 *start_time = INVALID_START_TIME;
664 evsel->duration_time.start_time != INVALID_START_TIME)
665 delta_start += (rdclock() - evsel->duration_time.start_time);
678 __u64 *start_time = xyarray__entry(evsel->process_time.start_times,
684 if (*start_time != INVALID_START_TIME && cur_time >= *start_time)
685 delta_start = accumulated + (cur_time - *start_time);