Searched refs:param_dict (Results 1 – 8 of 8) sorted by relevance
/linux-6.12.1/tools/perf/scripts/python/ |
D | intel-pt-events.py | 266 def print_common_ip(param_dict, sample, symbol, dso): argument 268 offs = get_offset(param_dict, "symoff") 299 def print_srccode(comm, param_dict, sample, symbol, dso, with_insn): argument 304 offs = get_offset(param_dict, "symoff") 342 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"] 354 dso = get_optional(param_dict, "dso") [all …]
|
D | stackcollapse.py | 71 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'])
|
D | event_analyzing_sample.py | 73 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"]
|
D | arm-cs-trace-disasm.py | 139 def print_srccode(comm, param_dict, sample, symbol, dso): argument 144 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") [all …]
|
D | gecko.py | 262 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]'
|
D | mem-phys-addr.py | 92 def process_event(param_dict): argument 93 name = param_dict["ev_name"] 94 sample = param_dict["sample"]
|
/linux-6.12.1/tools/perf/tests/shell/ |
D | test_intel_pt.sh | 550 def process_event(param_dict): 551 if "brstack" in param_dict: 552 brstack = param_dict["brstack"]
|
/linux-6.12.1/tools/perf/Documentation/ |
D | perf-script-python.txt | 556 def process_event(param_dict):
|