Searched refs:param_dict (Results 1 – 6 of 6) sorted by relevance
| /linux/tools/perf/scripts/python/ |
| H A 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 …]
|
| H A 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'])
|
| H A 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"]
|
| H A 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]'
|
| /linux/tools/perf/tests/shell/ |
| H A D | script_python.sh | 70 def process_event(param_dict): 71 print("param_dict: %s" % param_dict)
|
| H A D | test_intel_pt.sh | 555 def process_event(param_dict): 556 if "brstack" in param_dict: 557 brstack = param_dict["brstack"]
|