Home | History | Annotate | Download | only in analysis

Lines Matching refs:df

35     df = trace.data_frame.queue_df()
36 trace.analysis.binder_transaction.plot_samples(df, "delta_t",
39 trace.analysis.binder_transaction.plot_tasks(df, threshold, "__comm_x",
42 return df
54 df = trace.data_frame.alloc_df()
55 trace.analysis.binder_transaction.plot_samples(df, "size",
58 trace.analysis.binder_transaction.plot_tasks(df, threshold,
62 return df
74 df = trace.data_frame.alloc_df()
75 trace.analysis.binder_transaction.plot_samples(df, "delta_t",
79 return df
109 df = run_queue_analysis(trace, args.threshold)
111 df = run_buffer_analysis(trace, args.threshold)
113 df = run_alloc_analysis(trace, args.threshold)
115 df.to_csv(os.path.join(args.res_dir, "analysis_df.csv"))