Home
last modified time | relevance | path

Searched refs:dbe (Results 1 – 13 of 13) 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.h41 int (*export_evsel)(struct db_export *dbe, struct evsel *evsel);
42 int (*export_machine)(struct db_export *dbe, struct machine *machine);
43 int (*export_thread)(struct db_export *dbe, struct thread *thread,
45 int (*export_comm)(struct db_export *dbe, struct comm *comm,
47 int (*export_comm_thread)(struct db_export *dbe, u64 db_id,
49 int (*export_dso)(struct db_export *dbe, struct dso *dso,
51 int (*export_symbol)(struct db_export *dbe, struct symbol *sym,
53 int (*export_branch_type)(struct db_export *dbe, u32 branch_type,
55 int (*export_sample)(struct db_export *dbe, struct export_sample *es);
56 int (*export_call_path)(struct db_export *dbe, struc
[all...]
/linux/tools/perf/util/scripting-engines/
H A Dtrace-event-python.c94 struct db_export dbe; member
1139 static int python_export_evsel(struct db_export *dbe, struct evsel *evsel) in tuple_set_bytes()
1141 struct tables *tables = container_of(dbe, struct tables, dbe); in tuple_set_bytes()
1156 static int python_export_machine(struct db_export *dbe, in python_export_evsel()
1159 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_evsel()
1175 static int python_export_thread(struct db_export *dbe, struct thread *thread, in python_export_machine()
1178 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_machine()
1144 python_export_evsel(struct db_export * dbe,struct evsel * evsel) python_export_evsel() argument
1161 python_export_machine(struct db_export * dbe,struct machine * machine) python_export_machine() argument
1180 python_export_thread(struct db_export * dbe,struct thread * thread,u64 main_thread_db_id,struct machine * machine) python_export_thread() argument
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/include/linux/
H A Dieee80211-uhr.h314 const struct ieee80211_uhr_dbe_info *dbe = in ieee80211_uhr_oper_size_ok() local
317 needed += sizeof(*dbe); in ieee80211_uhr_oper_size_ok()
321 if (dbe->params & in ieee80211_uhr_oper_size_ok()
323 needed += sizeof(dbe->dis_subch_bmap[0]); in ieee80211_uhr_oper_size_ok()
514 const struct ieee80211_uhr_cap_dbe *dbe; in ieee80211_uhr_capa_size_ok() local
520 dbe = (const void *)cap->variable; in ieee80211_uhr_capa_size_ok()
522 if (dbe->cap & IEEE80211_UHR_MAC_CAP_DBE_EHT_MCS_MAP_160_PRES) in ieee80211_uhr_capa_size_ok()
523 needed += sizeof(dbe->eht_mcs_map[0]); in ieee80211_uhr_capa_size_ok()
525 if (dbe->cap & IEEE80211_UHR_MAC_CAP_DBE_EHT_MCS_MAP_320_PRES) in ieee80211_uhr_capa_size_ok()
526 needed += sizeof(dbe->eht_mcs_map[0]); in ieee80211_uhr_capa_size_ok()
/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
/linux/net/mac80211/
H A Dmlme.c411 const struct ieee80211_uhr_dbe_info *dbe; in ieee80211_determine_ap_chan() local
445 dbe = ieee80211_uhr_oper_dbe_info(uhr_oper); in ieee80211_determine_ap_chan()
446 if (dbe) { in ieee80211_determine_ap_chan()
459 dbe_bw_oper = u8_get_bits(dbe->params, in ieee80211_determine_ap_chan()
502 if (cfg80211_chandef_add_dbe(&dbe_chandef, dbe)) { in ieee80211_determine_ap_chan()
508 if (dbe && in ieee80211_determine_ap_chan()
/linux/include/net/
H A Dcfg80211.h1201 const struct ieee80211_uhr_dbe_info *dbe);