Lines Matching defs:buffer_instance
226 struct buffer_instance { struct
227 struct buffer_instance *next; argument
228 char *name;
229 struct tracefs_instance *tracefs;
230 unsigned long long trace_id;
231 char *cpumask;
232 char *output_file;
233 struct event_list *events;
234 struct event_list **event_next;
235 bool delete;
237 struct event_list *sched_switch_event;
238 struct event_list *sched_wakeup_event;
239 struct event_list *sched_wakeup_new_event;
241 const char *plugin;
242 char *filter_mod;
243 struct func_list *filter_funcs;
244 struct func_list *notrace_funcs;
246 struct opt_list *options;
247 struct filter_pids *filter_pids;
248 struct filter_pids *process_pids;
249 char *common_pid_filter;
250 int nr_filter_pids;
251 int len_filter_pids;
252 int nr_process_pids;
253 bool ptrace_child;
255 int have_set_event_pid;
256 int have_event_fork;
257 int have_func_fork;
258 int get_procmap;
260 const char *clock;
261 unsigned int *client_ports;
263 struct trace_seq *s_save;
264 struct trace_seq *s_print;
266 struct tracecmd_input *handle;
268 struct tracecmd_msg_handle *msg_handle;
269 struct tracecmd_output *network_handle;
270 const char *host;
272 struct pid_addr_maps *pid_maps;
274 char *max_graph_depth;
298 extern struct buffer_instance top_instance; argument