Lines Matching refs:dbe

106 	struct db_export	dbe;  member
1101 static int python_export_evsel(struct db_export *dbe, struct evsel *evsel) in python_export_evsel() argument
1103 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_evsel()
1118 static int python_export_machine(struct db_export *dbe, in python_export_machine() argument
1121 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_machine()
1137 static int python_export_thread(struct db_export *dbe, struct thread *thread, in python_export_thread() argument
1140 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_thread()
1158 static int python_export_comm(struct db_export *dbe, struct comm *comm, in python_export_comm() argument
1161 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_comm()
1179 static int python_export_comm_thread(struct db_export *dbe, u64 db_id, in python_export_comm_thread() argument
1182 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_comm_thread()
1198 static int python_export_dso(struct db_export *dbe, struct dso *dso, in python_export_dso() argument
1201 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_dso()
1222 static int python_export_symbol(struct db_export *dbe, struct symbol *sym, in python_export_symbol() argument
1225 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_symbol()
1245 static int python_export_branch_type(struct db_export *dbe, u32 branch_type, in python_export_branch_type() argument
1248 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_branch_type()
1263 static void python_export_sample_table(struct db_export *dbe, in python_export_sample_table() argument
1266 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_sample_table()
1302 static void python_export_synth(struct db_export *dbe, struct export_sample *es) in python_export_synth() argument
1304 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_synth()
1318 static int python_export_sample(struct db_export *dbe, in python_export_sample() argument
1321 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_sample()
1323 python_export_sample_table(dbe, es); in python_export_sample()
1326 python_export_synth(dbe, es); in python_export_sample()
1331 static int python_export_call_path(struct db_export *dbe, struct call_path *cp) in python_export_call_path() argument
1333 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_call_path()
1354 static int python_export_call_return(struct db_export *dbe, in python_export_call_return() argument
1357 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_call_return()
1385 static int python_export_context_switch(struct db_export *dbe, u64 db_id, in python_export_context_switch() argument
1391 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_context_switch()
1416 struct db_export *dbe = data; in python_process_call_return() local
1418 return db_export__call_return(dbe, cr, parent_db_id); in python_process_call_return()
1474 db_export__sample(&tables->dbe, event, sample, evsel, al, addr_al); in python_process_event()
1558 db_export__switch(&tables->dbe, event, sample, machine); in python_process_switch()
1746 tables->dbe.export_ ## name = python_export_ ## name; \
1763 if (db_export__init(&tables->dbe)) in set_table_handlers()
1777 tables->dbe.crp = NULL; in set_table_handlers()
1787 tables->dbe.crp = in set_table_handlers()
1789 &tables->dbe); in set_table_handlers()
1790 if (!tables->dbe.crp) in set_table_handlers()
1795 tables->dbe.cpr = NULL; in set_table_handlers()
1812 if (tables->dbe.crp) in set_table_handlers()
1813 tables->dbe.cpr = tables->dbe.crp->cpr; in set_table_handlers()
1815 tables->dbe.cpr = call_path_root__new(); in set_table_handlers()
1817 if (!tables->dbe.cpr) in set_table_handlers()
1930 err = db_export__branch_types(&tables->dbe); in python_start_script()
1959 db_export__exit(&tables->dbe); in python_stop_script()