Lines Matching refs:timestamp

64 	u64			timestamp;  member
242 get_new_event(struct task_desc *task, u64 timestamp) in get_new_event() argument
248 event->timestamp = timestamp; in get_new_event()
270 u64 timestamp, u64 duration) in add_sched_event_run() argument
284 event = get_new_event(task, timestamp); in add_sched_event_run()
293 u64 timestamp, struct task_desc *wakee) in add_sched_event_wakeup() argument
297 event = get_new_event(task, timestamp); in add_sched_event_wakeup()
320 u64 timestamp, u64 task_state __maybe_unused) in add_sched_event_sleep() argument
322 struct sched_atom *event = get_new_event(task, timestamp); in add_sched_event_sleep()
726 u64 timestamp0, timestamp = sample->time; in replay_switch_event() local
738 delta = timestamp - timestamp0; in replay_switch_event()
753 sched->cpu_last_switched[cpu] = timestamp; in replay_switch_event()
755 add_sched_event_run(sched, prev, timestamp, delta); in replay_switch_event()
756 add_sched_event_sleep(sched, prev, timestamp, prev_state); in replay_switch_event()
890 u64 timestamp) in add_sched_out_event() argument
898 atom->sched_out_time = timestamp; in add_sched_out_event()
911 u64 timestamp __maybe_unused) in add_runtime_event()
924 add_sched_in_event(struct work_atoms *atoms, u64 timestamp) in add_sched_in_event() argument
937 if (timestamp < atom->wake_up_time) { in add_sched_in_event()
943 atom->sched_in_time = timestamp; in add_sched_in_event()
949 atoms->max_lat_at = timestamp; in add_sched_in_event()
964 u64 timestamp0, timestamp = sample->time; in latency_switch_event() local
971 sched->cpu_last_switched[cpu] = timestamp; in latency_switch_event()
973 delta = timestamp - timestamp0; in latency_switch_event()
997 if (add_sched_out_event(out_events, sched_out_state(prev_state), timestamp)) in latency_switch_event()
1013 if (add_sched_out_event(in_events, 'R', timestamp)) in latency_switch_event()
1016 add_sched_in_event(in_events, timestamp); in latency_switch_event()
1033 u64 timestamp = sample->time; in latency_runtime_event() local
1048 if (add_sched_out_event(atoms, 'R', timestamp)) in latency_runtime_event()
1052 add_runtime_event(atoms, runtime, timestamp); in latency_runtime_event()
1068 u64 timestamp = sample->time; in latency_wakeup_event() local
1083 if (add_sched_out_event(atoms, 'S', timestamp)) in latency_wakeup_event()
1106 if (atom->sched_out_time > timestamp) { in latency_wakeup_event()
1112 atom->wake_up_time = timestamp; in latency_wakeup_event()
1126 u64 timestamp = sample->time; in latency_migrate_task_event() local
1151 if (add_sched_out_event(atoms, 'R', timestamp)) in latency_migrate_task_event()
1158 atom->sched_in_time = atom->sched_out_time = atom->wake_up_time = timestamp; in latency_migrate_task_event()
1162 if (atom->sched_out_time > timestamp) in latency_migrate_task_event()
1348 u64 timestamp0, timestamp = sample->time; in map_switch_event() local
1358 sched->cpu_last_switched[this_cpu] = timestamp; in map_switch_event()
1360 delta = timestamp - timestamp0; in map_switch_event()
1415 printf(" %12.6f secs ", (double)timestamp/1e9); in map_switch_event()