Home
last modified time | relevance | path

Searched refs:Event (Results 1 – 20 of 20) sorted by relevance

/tools/perf/pmu-events/
Dmetric_test.py5 from metric import Event
14 a = Event('a')
15 b = Event('b')
30 a = Event('a')
31 b = Event('b')
32 c = Event('c')
Dmetric.py174 not isinstance(rhs, Event) or 'slots' not in rhs.name.lower()):
200 return Event(name)
248 return Event(name)
298 return Event(name)
311 class Event(Expression): class
329 return isinstance(other, Event) and self.name == other.name
405 def source_count(event: Event) -> Function: argument
411 def has_event(event: Event) -> Function: argument
416 def strcmp_cpuid_str(cpuid: Event) -> Function: argument
/tools/perf/tests/attr/
Dsystem-wide-dummy1 # Event added by system-wide or CPU perf-record to handle the race of
17 # Event will be enabled right away.
/tools/testing/selftests/bpf/progs/
Dpyperf.h60 } Event; typedef
133 __type(value, Event);
172 Event *event;
184 Event *event = ctx->event; in process_frame_callback()
231 Event* event = bpf_map_lookup_elem(&eventmap, &zero);
342 bpf_perf_event_output(ctx, &perfmap, 0, event, offsetof(Event, metadata));
/tools/perf/tests/
Dattr.py55 class Event(dict): class
109 for t in Event.terms:
123 for t in Event.terms:
268 e = Event(section, parser_items, base_items)
/tools/perf/Documentation/
Dperf-list.txt129 Event Umask Event Mask
157 Event Umask Event Mask
288 errors. Event groups can be specified using { }.
Ditrace.txt12 (e.g. Intel PT Event Trace)
Dperf-mem.txt59 Event selector. Use 'perf mem record -e list' to list available events.
Dperf-top.txt26 Event period to sample.
47 Event filter. This option should follow an event selector (-e). For
407 Event to display when multiple counters are active.
Dperf-c2c.txt314 Trace Event Information
317 Global Shared Cache Line Event Information
Dperf-amd-ibs.txt168 Samples: 3M of event 'ibs_op//', Event count (approx.): 23524876
Dperf-intel-pt.txt502 event Enable Event Trace. The events provide information about asynchronous
921 I synthesize Event Trace events
1665 # Event count (approx.): 2274583
1681 Event Trace
1684 Event Trace records information about asynchronous events, for example interrupts,
1703 The capability to do Event Trace is indicated by the
1706 Event trace is selected for recording using the "event" config term. e.g.
1710 Event trace events are output using the --itrace I option. e.g.
1739 The intel-pt-events.py script illustrates how to access Event Trace information
Dperf-trace.txt46 Event filter. This option should follow an event selector (-e) which
Dperf.data-file-format.txt626 Event types
Dperf-record.txt108 Event filter. This option should follow an event selector (-e).
253 Event period to sample.
Dperf-config.txt530 # Event count (approx.): 6876107743
Dperf-report.txt94 - weight: Event specific weight, e.g. memory latency or transaction
/tools/arch/x86/kcpuid/
Dcpuid.csv453 0x14, 0, ebx, 5, power_event_trace , Power Event Trace support
455 …0x14, 0, ebx, 7, event_trace , Event Trace packet generation through …
895 0x8000001c, 0, eax, 2, os_lwp_ire , Instructions Retired Event (Event…
896 0x8000001c, 0, eax, 3, os_lwp_bre , Branch Retired Event (EventId=3) …
897 0x8000001c, 0, eax, 4, os_lwp_dme , DCache Miss Event (EventId=4) is …
918 0x8000001c, 0, edx, 2, hw_lwp_ire , Instructions Retired Event (Event…
919 0x8000001c, 0, edx, 3, hw_lwp_bre , Branch Retired Event (EventId=3) …
920 0x8000001c, 0, edx, 4, hw_lwp_dme , DCache Miss Event (EventId=4) is …
989 0x80000020, 0, ebx, 3, bmec , Bandwidth Monitoring Event Config…
/tools/kvm/kvm_stat/
Dkvm_stat468 class Event(object): class
733 group.add_event(Event(name=name,
/tools/perf/scripts/python/
Dexported-sql-viewer.py137 from multiprocessing import Process, Array, Value, Event
2675 self.wait_event = Event()
2676 self.fetched_event = Event()