Home
last modified time | relevance | path

Searched refs:param_dict (Results 1 – 6 of 6) sorted by relevance

/linux-5.19.10/tools/perf/scripts/python/
Dintel-pt-events.py225 def print_common_ip(param_dict, sample, symbol, dso): argument
227 offs = get_offset(param_dict, "symoff")
258 def print_srccode(comm, param_dict, sample, symbol, dso, with_insn): argument
263 offs = get_offset(param_dict, "symoff")
301 def do_process_event(param_dict): argument
302 event_attr = param_dict["attr"]
303 sample = param_dict["sample"]
304 raw_buf = param_dict["raw_buf"]
305 comm = param_dict["comm"]
306 name = param_dict["ev_name"]
[all …]
Dstackcollapse.py71 def process_event(param_dict): argument
98 if 'callchain' in param_dict:
99 for entry in param_dict['callchain']:
106 param_dict.setdefault('symbol', None)
107 param_dict.setdefault('dso', None)
108 stack.append(tidy_function_name(param_dict['symbol'],
109 param_dict['dso']))
112 comm = param_dict["comm"].replace(' ', '_')
115 comm = comm + sep + str(param_dict['sample']['pid'])
118 comm = comm + sep + str(param_dict['sample']['tid'])
Devent_analyzing_sample.py73 def process_event(param_dict): argument
74 event_attr = param_dict["attr"]
75 sample = param_dict["sample"]
76 raw_buf = param_dict["raw_buf"]
77 comm = param_dict["comm"]
78 name = param_dict["ev_name"]
81 if ("dso" in param_dict):
82 dso = param_dict["dso"]
86 if ("symbol" in param_dict):
87 symbol = param_dict["symbol"]
Darm-cs-trace-disasm.py140 def print_srccode(comm, param_dict, sample, symbol, dso): argument
145 offs = get_offset(param_dict, "symoff")
178 def process_event(param_dict): argument
182 sample = param_dict["sample"]
183 comm = param_dict["comm"]
185 name = param_dict["ev_name"]
186 dso = get_optional(param_dict, "dso")
187 dso_bid = get_optional(param_dict, "dso_bid")
188 dso_start = get_optional(param_dict, "dso_map_start")
189 dso_end = get_optional(param_dict, "dso_map_end")
[all …]
Dmem-phys-addr.py92 def process_event(param_dict): argument
93 name = param_dict["ev_name"]
94 sample = param_dict["sample"]
/linux-5.19.10/tools/perf/Documentation/
Dperf-script-python.txt556 def process_event(param_dict):