Home
last modified time | relevance | path

Searched refs:dbe (Results 1 – 10 of 10) sorted by relevance

/linux/tools/perf/util/
H A Ddb-export.c23 int db_export__init(struct db_export *dbe)
25 memset(dbe, 0, sizeof(struct db_export)); in db_export__init()
29 void db_export__exit(struct db_export *dbe)
31 call_return_processor__free(dbe->crp); in db_export__exit()
32 dbe->crp = NULL; in db_export__exit()
35 int db_export__evsel(struct db_export *dbe, struct evsel *evsel)
40 evsel->db_id = ++dbe->evsel_last_db_id; in db_export__evsel()
42 if (dbe->export_evsel) in db_export__evsel()
43 return dbe->export_evsel(dbe, evse in db_export__evsel()
24 db_export__init(struct db_export * dbe) db_export__init() argument
30 db_export__exit(struct db_export * dbe) db_export__exit() argument
36 db_export__evsel(struct db_export * dbe,struct evsel * evsel) db_export__evsel() argument
49 db_export__machine(struct db_export * dbe,struct machine * machine) db_export__machine() argument
62 db_export__thread(struct db_export * dbe,struct thread * thread,struct machine * machine,struct thread * main_thread) db_export__thread() argument
82 __db_export__comm(struct db_export * dbe,struct comm * comm,struct thread * thread) __db_export__comm() argument
93 db_export__comm(struct db_export * dbe,struct comm * comm,struct thread * thread) db_export__comm() argument
108 db_export__exec_comm(struct db_export * dbe,struct comm * comm,struct thread * main_thread) db_export__exec_comm() argument
133 db_export__comm_thread(struct db_export * dbe,struct comm * comm,struct thread * thread) db_export__comm_thread() argument
146 db_export__dso(struct db_export * dbe,struct dso * dso,struct machine * machine) db_export__dso() argument
160 db_export__symbol(struct db_export * dbe,struct symbol * sym,struct dso * dso) db_export__symbol() argument
176 db_ids_from_al(struct db_export * dbe,struct addr_location * al,u64 * dso_db_id,u64 * sym_db_id,u64 * offset) db_ids_from_al() argument
209 call_path_from_sample(struct db_export * dbe,struct machine * machine,struct thread * thread,struct perf_sample * sample,struct evsel * evsel) call_path_from_sample() argument
285 db_export__branch_type(struct db_export * dbe,u32 branch_type,const char * name) db_export__branch_type() argument
294 db_export__threads(struct db_export * dbe,struct thread * thread,struct thread * main_thread,struct machine * machine,struct comm ** comm_ptr) db_export__threads() argument
348 db_export__sample(struct db_export * dbe,union perf_event * event,struct perf_sample * sample,struct evsel * evsel,struct addr_location * al,struct addr_location * addr_al) db_export__sample() argument
452 db_export__branch_types(struct db_export * dbe) db_export__branch_types() argument
487 db_export__call_path(struct db_export * dbe,struct call_path * cp) db_export__call_path() argument
508 db_export__call_return(struct db_export * dbe,struct call_return * cr,u64 * parent_db_id) db_export__call_return() argument
532 db_export__pid_tid(struct db_export * dbe,struct machine * machine,pid_t pid,pid_t tid,u64 * db_id,struct comm ** comm_ptr,bool * is_idle) db_export__pid_tid() argument
558 db_export__switch(struct db_export * dbe,union perf_event * event,struct perf_sample * sample,struct machine * machine) db_export__switch() argument
[all...]
H A Ddb-export.h42 int (*export_evsel)(struct db_export *dbe, struct evsel *evsel);
43 int (*export_machine)(struct db_export *dbe, struct machine *machine);
44 int (*export_thread)(struct db_export *dbe, struct thread *thread,
46 int (*export_comm)(struct db_export *dbe, struct comm *comm,
48 int (*export_comm_thread)(struct db_export *dbe, u64 db_id,
50 int (*export_dso)(struct db_export *dbe, struct dso *dso,
52 int (*export_symbol)(struct db_export *dbe, struct symbol *sym,
54 int (*export_branch_type)(struct db_export *dbe, u32 branch_type,
56 int (*export_sample)(struct db_export *dbe, struct export_sample *es);
57 int (*export_call_path)(struct db_export *dbe, struct call_path *cp);
[all …]
/linux/tools/perf/util/scripting-engines/
H A Dtrace-event-python.c94 struct db_export dbe; member
1144 static int python_export_evsel(struct db_export *dbe, struct evsel *evsel) in python_export_evsel() argument
1146 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_evsel()
1161 static int python_export_machine(struct db_export *dbe, in python_export_machine() argument
1164 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_machine()
1180 static int python_export_thread(struct db_export *dbe, struct thread *thread, in python_export_thread() argument
1183 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_thread()
1201 python_export_comm(struct db_export * dbe,struct comm * comm,struct thread * thread) python_export_comm() argument
1222 python_export_comm_thread(struct db_export * dbe,u64 db_id,struct comm * comm,struct thread * thread) python_export_comm_thread() argument
1241 python_export_dso(struct db_export * dbe,struct dso * dso,struct machine * machine) python_export_dso() argument
1265 python_export_symbol(struct db_export * dbe,struct symbol * sym,struct dso * dso) python_export_symbol() argument
1288 python_export_branch_type(struct db_export * dbe,u32 branch_type,const char * name) python_export_branch_type() argument
1306 python_export_sample_table(struct db_export * dbe,struct export_sample * es) python_export_sample_table() argument
1348 python_export_synth(struct db_export * dbe,struct export_sample * es) python_export_synth() argument
1364 python_export_sample(struct db_export * dbe,struct export_sample * es) python_export_sample() argument
1377 python_export_call_path(struct db_export * dbe,struct call_path * cp) python_export_call_path() argument
1400 python_export_call_return(struct db_export * dbe,struct call_return * cr) python_export_call_return() argument
1431 python_export_context_switch(struct db_export * dbe,u64 db_id,struct machine * machine,struct perf_sample * sample,u64 th_out_id,u64 comm_out_id,u64 th_in_id,u64 comm_in_id,int flags) python_export_context_switch() argument
1462 struct db_export *dbe = data; python_process_call_return() local
[all...]
/linux/drivers/edac/
H A Docteon_edac-l2c.c69 if (err_tdtx.s.dbe || err_tdtx.s.sbe || in _octeon_l2c_poll_oct2()
75 if (err_tdtx.s.dbe) { in _octeon_l2c_poll_oct2()
78 err_tdtx_reset.s.dbe = 1; in _octeon_l2c_poll_oct2()
105 if (err_ttgx.s.dbe || err_ttgx.s.sbe) in _octeon_l2c_poll_oct2()
110 if (err_ttgx.s.dbe) { in _octeon_l2c_poll_oct2()
113 err_ttgx_reset.s.dbe = 1; in _octeon_l2c_poll_oct2()
/linux/arch/mips/kernel/
H A Dmodule.c397 struct mod_arch_specific *dbe; in search_module_dbetables() local
400 list_for_each_entry(dbe, &dbe_list, dbe_list) { in search_module_dbetables()
401 e = search_extable(dbe->dbe_start, in search_module_dbetables()
402 dbe->dbe_end - dbe->dbe_start, addr); in search_module_dbetables()
H A Dgenex.S571 BUILD_HANDLER dbe be cli silent /* #7 */
/linux/arch/mips/include/asm/octeon/
H A Dcvmx-l2c-defs.h78 __BITFIELD_FIELD(uint64_t dbe:1,
94 __BITFIELD_FIELD(uint64_t dbe:1,
H A Dcvmx-pow-defs.h328 uint64_t dbe:1; member
332 uint64_t dbe:1;
355 uint64_t dbe:1; member
359 uint64_t dbe:1;
/linux/drivers/crypto/cavium/nitrox/
H A Dnitrox_csr.h918 u64 dbe : 1; member
926 u64 dbe : 1;
1274 u64 dbe : 1; member
1284 u64 dbe : 1;
/linux/drivers/soc/fsl/dpio/
H A Dqbman-portal.h600 u8 dbe; member