Home
last modified time | relevance | path

Searched refs:wakee (Results 1 – 5 of 5) sorted by relevance

/linux/kernel/trace/
H A Dtrace_sched_wakeup.c415 struct task_struct *wakee, in tracing_sched_wakeup_trace() argument
431 entry->next_pid = wakee->pid; in tracing_sched_wakeup_trace()
432 entry->next_prio = wakee->prio; in tracing_sched_wakeup_trace()
433 entry->next_state = task_state_index(wakee); in tracing_sched_wakeup_trace()
434 entry->next_cpu = task_cpu(wakee); in tracing_sched_wakeup_trace()
H A Dtrace_sched_switch.c40 probe_sched_wakeup(void *ignore, struct task_struct *wakee) in probe_sched_wakeup() argument
49 tracing_record_taskinfo_sched_switch(current, wakee, flags); in probe_sched_wakeup()
/linux/tools/perf/
H A Dbuiltin-timechart.c189 int wakee;
427 int waker, int wakee, u8 flags, const char *backtrace) in sched_wakeup()
444 we->wakee = wakee; in sched_wakeup()
447 p = find_create_pid(tchart, we->wakee); in sched_wakeup()
659 int wakee = perf_sample__intval(sample, "pid"); in process_sample_power_start()
670 sched_wakeup(tchart, sample->cpu, sample->time, waker, wakee, flags, backtrace);
1094 /* locate the column of the waker and wakee */ in draw_wakeups()
1097 if (p->pid == we->waker || p->pid == we->wakee) { in draw_wakeups()
1105 if (p->pid == we->wakee in draw_wakeups()
188 int wakee; global() member
426 sched_wakeup(struct timechart * tchart,int cpu,u64 timestamp,int waker,int wakee,u8 flags,const char * backtrace) sched_wakeup() argument
635 int wakee = evsel__intval(evsel, sample, "pid"); process_sample_sched_wakeup() local
[all...]
H A Dbuiltin-sched.c159 struct task_desc *wakee;
559 u64 timestamp, struct task_desc *wakee)
567 event->wakee = wakee; in self_open_counters()
569 wakee_event = last_event(wakee); in self_open_counters()
1004 struct task_desc *waker, *wakee; in thread_atoms_search()
1013 wakee = register_pid(sched, pid, comm); in __thread_latency_insert()
1014 if (waker == NULL || wakee == NULL) in __thread_latency_insert()
1017 add_sched_event_wakeup(sched, waker, sample->time, wakee); in __thread_latency_insert()
1460 struct thread *wakee; in sort_dimension__add()
95 struct task_desc *wakee; global() member
413 add_sched_event_wakeup(struct perf_sched * sched,struct task_desc * task,u64 timestamp,struct task_desc * wakee) add_sched_event_wakeup() argument
834 struct task_desc *waker, *wakee; replay_wakeup_event() local
1249 struct thread *wakee; latency_wakeup_event() local
[all...]
/linux/tools/perf/scripts/python/
H A Dsched-migration.py60 def __init__(self, wakee): argument
61 self.wakee = wakee
64 return "%s woke up" % thread_name(self.wakee)