• Home
  • Raw
  • Download

Lines Matching full:tables

100 struct tables {  struct
116 static struct tables tables_global; argument
950 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_evsel() local
958 call_object(tables->evsel_handler, t, "evsel_table"); in python_export_evsel()
968 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_machine() local
977 call_object(tables->machine_handler, t, "machine_table"); in python_export_machine()
987 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_thread() local
998 call_object(tables->thread_handler, t, "thread_table"); in python_export_thread()
1007 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_comm() local
1015 call_object(tables->comm_handler, t, "comm_table"); in python_export_comm()
1025 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_comm_thread() local
1034 call_object(tables->comm_thread_handler, t, "comm_thread_table"); in python_export_comm_thread()
1044 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_dso() local
1058 call_object(tables->dso_handler, t, "dso_table"); in python_export_dso()
1068 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_symbol() local
1081 call_object(tables->symbol_handler, t, "symbol_table"); in python_export_symbol()
1091 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_branch_type() local
1099 call_object(tables->branch_type_handler, t, "branch_type_table"); in python_export_branch_type()
1109 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_sample() local
1137 call_object(tables->sample_handler, t, "sample_table"); in python_export_sample()
1146 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_call_path() local
1160 call_object(tables->call_path_handler, t, "call_path_table"); in python_export_call_path()
1170 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_call_return() local
1188 call_object(tables->call_return_handler, t, "call_return_table"); in python_export_call_return()
1242 struct tables *tables = &tables_global; in python_process_event() local
1250 if (tables->db_export_mode) in python_process_event()
1251 db_export__sample(&tables->dbe, event, sample, evsel, al); in python_process_event()
1378 tables->handler_name = get_handler(#table_name); \
1379 if (tables->handler_name) \
1380 tables->dbe.export_ ## name = python_export_ ## name; \
1386 static void set_table_handlers(struct tables *tables) in set_table_handlers() argument
1396 memset(tables, 0, sizeof(struct tables)); in set_table_handlers()
1397 if (db_export__init(&tables->dbe)) in set_table_handlers()
1411 tables->dbe.crp = NULL; in set_table_handlers()
1421 tables->dbe.crp = in set_table_handlers()
1423 &tables->dbe); in set_table_handlers()
1424 if (!tables->dbe.crp) in set_table_handlers()
1429 tables->dbe.cpr = NULL; in set_table_handlers()
1446 if (tables->dbe.crp) in set_table_handlers()
1447 tables->dbe.cpr = tables->dbe.crp->cpr; in set_table_handlers()
1449 tables->dbe.cpr = call_path_root__new(); in set_table_handlers()
1451 if (!tables->dbe.cpr) in set_table_handlers()
1455 tables->db_export_mode = true; in set_table_handlers()
1495 struct tables *tables = &tables_global; in python_start_script() local
1553 set_table_handlers(tables); in python_start_script()
1555 if (tables->db_export_mode) { in python_start_script()
1556 err = db_export__branch_types(&tables->dbe); in python_start_script()
1573 struct tables *tables = &tables_global; in python_flush_script() local
1575 return db_export__flush(&tables->dbe); in python_flush_script()
1583 struct tables *tables = &tables_global; in python_stop_script() local
1587 db_export__exit(&tables->dbe); in python_stop_script()