Lines Matching refs:dbe
63 struct db_export dbe; member
513 static int python_export_evsel(struct db_export *dbe, struct perf_evsel *evsel) in python_export_evsel() argument
515 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_evsel()
530 static int python_export_machine(struct db_export *dbe, in python_export_machine() argument
533 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_machine()
549 static int python_export_thread(struct db_export *dbe, struct thread *thread, in python_export_thread() argument
552 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_thread()
570 static int python_export_comm(struct db_export *dbe, struct comm *comm) in python_export_comm() argument
572 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_comm()
587 static int python_export_comm_thread(struct db_export *dbe, u64 db_id, in python_export_comm_thread() argument
590 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_comm_thread()
606 static int python_export_dso(struct db_export *dbe, struct dso *dso, in python_export_dso() argument
609 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_dso()
630 static int python_export_symbol(struct db_export *dbe, struct symbol *sym, in python_export_symbol() argument
633 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_symbol()
653 static int python_export_branch_type(struct db_export *dbe, u32 branch_type, in python_export_branch_type() argument
656 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_branch_type()
671 static int python_export_sample(struct db_export *dbe, in python_export_sample() argument
674 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_sample()
708 static int python_export_call_path(struct db_export *dbe, struct call_path *cp) in python_export_call_path() argument
710 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_call_path()
731 static int python_export_call_return(struct db_export *dbe, in python_export_call_return() argument
734 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_call_return()
761 struct db_export *dbe = data; in python_process_call_return() local
763 return db_export__call_return(dbe, cr); in python_process_call_return()
855 db_export__sample(&tables->dbe, event, sample, evsel, al); in python_process_event()
886 tables->dbe.export_ ## name = python_export_ ## name; \
901 if (db_export__init(&tables->dbe)) in set_table_handlers()
914 tables->dbe.crp = NULL; in set_table_handlers()
924 tables->dbe.crp = in set_table_handlers()
926 &tables->dbe); in set_table_handlers()
927 if (!tables->dbe.crp) in set_table_handlers()
997 err = db_export__branch_types(&tables->dbe); in python_start_script()
1014 return db_export__flush(&tables->dbe); in python_flush_script()
1026 db_export__exit(&tables->dbe); in python_stop_script()