Home
last modified time | relevance | path

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

/linux/tools/perf/scripts/python/
A Dintel-pt-events.py342 def do_process_event(param_dict): argument
343 sample = param_dict["sample"]
344 raw_buf = param_dict["raw_buf"]
345 comm = param_dict["comm"]
346 name = param_dict["ev_name"]
414 def interleave_events(param_dict): argument
420 sample = param_dict["sample"]
430 do_process_event(param_dict)
434 def process_event(param_dict): argument
437 interleave_events(param_dict)
[all …]
A 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'])
A 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"]
A Darm-cs-trace-disasm.py144 offs = get_offset(param_dict, "symoff")
177 def process_event(param_dict): argument
181 sample = param_dict["sample"]
182 comm = param_dict["comm"]
184 name = param_dict["ev_name"]
185 dso = get_optional(param_dict, "dso")
186 dso_bid = get_optional(param_dict, "dso_bid")
187 dso_start = get_optional(param_dict, "dso_map_start")
188 dso_end = get_optional(param_dict, "dso_map_end")
189 symbol = get_optional(param_dict, "symbol")
[all …]
A Dgecko.py262 def process_event(param_dict: Dict) -> None:
265 time_stamp = (param_dict['sample']['time'] // 1000) / 1000
266 pid = param_dict['sample']['pid']
267 tid = param_dict['sample']['tid']
268 comm = param_dict['comm']
276 if param_dict['callchain']:
277 for call in param_dict['callchain']:
288 func = param_dict['symbol'] if 'symbol' in param_dict else '[unknown]'
289 dso = param_dict['dso'] if 'dso' in param_dict else '[unknown]'
A Dmem-phys-addr.py92 def process_event(param_dict): argument
93 name = param_dict["ev_name"]
94 sample = param_dict["sample"]
/linux/tools/perf/tests/shell/
A Dtest_intel_pt.sh550 def process_event(param_dict):
551 if "brstack" in param_dict:
552 brstack = param_dict["brstack"]
/linux/tools/perf/Documentation/
A Dperf-script-python.txt556 def process_event(param_dict):

Completed in 11 milliseconds