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