Home
last modified time | relevance | path

Searched refs:raw_buf (Results 1 – 2 of 2) sorted by relevance

/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
DEventClass.py24 def create_event(name, comm, dso, symbol, raw_buf): argument
25 if (len(raw_buf) == 144):
26 event = PebsEvent(name, comm, dso, symbol, raw_buf)
27 elif (len(raw_buf) == 176):
28 event = PebsNHM(name, comm, dso, symbol, raw_buf)
30 event = PerfEvent(name, comm, dso, symbol, raw_buf)
36 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_GENERIC): argument
41 self.raw_buf = raw_buf
55 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_PEBS): argument
56 tmp_buf=raw_buf[0:80]
[all …]
/tools/perf/scripts/python/
Devent_analyzing_sample.py73 raw_buf = param_dict["raw_buf"]
89 event = create_event(name, comm, dso, symbol, raw_buf)