Lines Matching defs:timechart
53 struct timechart { struct
54 struct perf_tool tool;
55 struct per_pid *all_data;
56 struct power_event *power_events;
57 struct wake_event *wake_events;
58 int proc_num;
59 unsigned int numcpus;
60 u64 min_freq, /* Lowest CPU frequency seen */
61 max_freq, /* Highest CPU frequency seen */
62 turbo_frequency,
63 first_time, last_time;
64 bool power_only,
65 tasks_only,
66 with_backtrace,
67 topology;
68 bool force;
70 bool io_only,
71 skip_eagain;
72 u64 io_events;
73 u64 min_time,
74 merge_dist;
1418 static int determine_display_io_tasks(struct timechart *timechart, u64 threshold) in determine_display_io_tasks()