Home | History | Annotate | Download | only in perf

Lines Matching full:timestamp

62 	u64			timestamp;
238 get_new_event(struct task_desc *task, u64 timestamp)
244 event->timestamp = timestamp;
266 u64 timestamp, u64 duration)
280 event = get_new_event(task, timestamp);
289 u64 timestamp, struct task_desc *wakee)
293 event = get_new_event(task, timestamp);
316 u64 timestamp, u64 task_state __maybe_unused)
318 struct sched_atom *event = get_new_event(task, timestamp);
686 u64 timestamp0, timestamp = sample->time;
698 delta = timestamp - timestamp0;
713 sched->cpu_last_switched[cpu] = timestamp;
715 add_sched_event_run(sched, prev, timestamp, delta);
716 add_sched_event_sleep(sched, prev, timestamp, prev_state);
847 u64 timestamp)
855 atom->sched_out_time = timestamp;
868 u64 timestamp __maybe_unused)
881 add_sched_in_event(struct work_atoms *atoms, u64 timestamp)
894 if (timestamp < atom->wake_up_time) {
900 atom->sched_in_time = timestamp;
906 atoms->max_lat_at = timestamp;
921 u64 timestamp0, timestamp = sample->time;
928 sched->cpu_last_switched[cpu] = timestamp;
930 delta = timestamp - timestamp0;
952 if (add_sched_out_event(out_events, sched_out_state(prev_state), timestamp))
968 if (add_sched_out_event(in_events, 'R', timestamp))
971 add_sched_in_event(in_events, timestamp);
985 u64 timestamp = sample->time;
997 if (add_sched_out_event(atoms, 'R', timestamp))
1001 add_runtime_event(atoms, runtime, timestamp);
1015 u64 timestamp = sample->time;
1031 if (add_sched_out_event(atoms, 'S', timestamp))
1048 if (atom->sched_out_time > timestamp) {
1054 atom->wake_up_time = timestamp;
1064 u64 timestamp = sample->time;
1086 if (add_sched_out_event(atoms, 'R', timestamp))
1093 atom->sched_in_time = atom->sched_out_time = atom->wake_up_time = timestamp;
1097 if (atom->sched_out_time > timestamp)
1273 u64 timestamp0, timestamp = sample->time;
1283 sched->cpu_last_switched[this_cpu] = timestamp;
1285 delta = timestamp - timestamp0;
1334 printf(" %12.6f secs ", (double)timestamp/1e9);