Home
last modified time | relevance | path

Searched full:event (Results 1 – 25 of 6949) sorted by relevance

12345678910>>...278

/openbmc/linux/arch/powerpc/perf/
H A Dpower7-events-list.h8 EVENT(PM_IC_DEMAND_L2_BR_ALL, 0x04898)
9 EVENT(PM_GCT_UTIL_7_TO_10_SLOTS, 0x020a0)
10 EVENT(PM_PMC2_SAVED, 0x10022)
11 EVENT(PM_CMPLU_STALL_DFU, 0x2003c)
12 EVENT(PM_VSU0_16FLOP, 0x0a0a4)
13 EVENT(PM_MRK_LSU_DERAT_MISS, 0x3d05a)
14 EVENT(PM_MRK_ST_CMPL, 0x10034)
15 EVENT(PM_NEST_PAIR3_ADD, 0x40881)
16 EVENT(PM_L2_ST_DISP, 0x46180)
17 EVENT(PM_L2_CASTOUT_MOD, 0x16180)
[all …]
H A Dpower9-events-list.h9 * Power9 event codes.
11 EVENT(PM_CYC, 0x0001e)
12 EVENT(PM_ICT_NOSLOT_CYC, 0x100f8)
13 EVENT(PM_CMPLU_STALL, 0x1e054)
14 EVENT(PM_INST_CMPL, 0x00002)
15 EVENT(PM_BR_CMPL, 0x4d05e)
16 EVENT(PM_BR_MPRED_CMPL, 0x400f6)
19 EVENT(PM_LD_REF_L1, 0x100fc)
21 EVENT(PM_LD_MISS_L1_FIN, 0x2c04e)
22 EVENT(PM_LD_MISS_L1, 0x3e054)
[all …]
H A Dpower8-events-list.h9 * Power8 event codes.
11 EVENT(PM_CYC, 0x0001e)
12 EVENT(PM_GCT_NOSLOT_CYC, 0x100f8)
13 EVENT(PM_CMPLU_STALL, 0x4000a)
14 EVENT(PM_INST_CMPL, 0x00002)
15 EVENT(PM_BRU_FIN, 0x10068)
16 EVENT(PM_BR_MPRED_CMPL, 0x400f6)
19 EVENT(PM_LD_REF_L1, 0x100ee)
21 EVENT(PM_LD_MISS_L1, 0x3e054)
23 EVENT(PM_ST_MISS_L1, 0x300f0)
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/tests/
H A Devent.py2 # BitBake Tests for the Event implementation (event.py)
21 import bb.event
31 def _store_event_data_string(self, event): argument
32 if isinstance(event, logging.LogRecord):
34 self.event_calls.append(formatter.format(event))
36 self.event_calls.append(bb.event.getName(event))
41 """ Class used as specification for UI event handler queue stub objects """
45 def send(self, event): argument
46 super(EventQueueStub, self)._store_event_data_string(event)
50 """ Class used as specification for UI event handler queue stub objects
[all …]
/openbmc/linux/tools/testing/selftests/powerpc/pmu/event_code_tests/
H A Dgeneric_events_valid_test.c9 #include "../event.h"
13 * Testcase to ensure that using invalid event in generic
14 * event for PERF_TYPE_HARDWARE should fail
19 struct event event; in generic_events_valid_test() local
35 event_init_opts(&event, PERF_COUNT_HW_CPU_CYCLES, PERF_TYPE_HARDWARE, "event"); in generic_events_valid_test()
36 FAIL_IF(event_open(&event)); in generic_events_valid_test()
37 event_close(&event); in generic_events_valid_test()
39 event_init_opts(&event, PERF_COUNT_HW_INSTRUCTIONS, in generic_events_valid_test()
40 PERF_TYPE_HARDWARE, "event"); in generic_events_valid_test()
41 FAIL_IF(event_open(&event)); in generic_events_valid_test()
[all …]
H A Dhw_cache_event_type_test.c9 #include "../event.h"
18 * Hardware cache event operation type : PERF_COUNT_HW_CACHE_OP_READ
19 * Hardware cache event result type : PERF_COUNT_HW_CACHE_RESULT_MISS
24 * Hardware cache event operation type : PERF_COUNT_HW_CACHE_OP_WRITE
25 * Hardware cache event result type : PERF_COUNT_HW_CACHE_RESULT_ACCESS
30 * Hardware cache event operation type : PERF_COUNT_HW_CACHE_OP_WRITE
31 * Hardware cache event result type : PERF_COUNT_HW_CACHE_RESULT_ACCESS
36 * Hardware cache event operation type : PERF_COUNT_HW_CACHE_OP_READ
37 * Hardware cache event result type : Invalid ( > PERF_COUNT_HW_CACHE_RESULT_MAX)
46 struct event event; in hw_cache_event_type_test() local
[all …]
/openbmc/qemu/replay/
H A Dreplay-events.c20 typedef struct Event { struct
26 QTAILQ_ENTRY(Event) events; argument
27 } Event; typedef
29 static QTAILQ_HEAD(, Event) events_list = QTAILQ_HEAD_INITIALIZER(events_list);
34 static void replay_run_event(Event *event) in replay_run_event() argument
36 switch (event->event_kind) { in replay_run_event()
38 aio_bh_call(event->opaque); in replay_run_event()
41 ((QEMUBHFunc *)event->opaque)(event->opaque2); in replay_run_event()
44 qemu_input_event_send_impl(NULL, (InputEvent *)event->opaque); in replay_run_event()
45 qapi_free_InputEvent((InputEvent *)event->opaque); in replay_run_event()
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/ui/
H A Dtoasterui.py95 "bb.event.BuildInit",
96 "bb.event.BuildCompleted",
97 "bb.event.BuildStarted",
98 "bb.event.CacheLoadCompleted",
99 "bb.event.CacheLoadProgress",
100 "bb.event.CacheLoadStarted",
101 "bb.event.ConfigParsed",
102 "bb.event.DepTreeGenerated",
103 "bb.event.LogExecTTY",
104 "bb.event.MetadataEvent",
[all …]
H A Duihelper.py22 def eventHandler(self, event): argument
32 if isinstance(event, bb.build.TaskStarted):
33 tid = event._fn + ":" + event._task
34 if event._mc != "default":
35 …tid] = { 'title' : "mc:%s:%s %s" % (event._mc, event._package, event._task), 'starttime' : time.ti…
37 …ning_tasks[tid] = { 'title' : "%s %s" % (event._package, event._task), 'starttime' : time.time(), …
39 self.pidmap[event.pid] = tid
41 elif isinstance(event, bb.build.TaskSucceeded):
42 tid = event._fn + ":" + event._task
43 removetid(event.pid, tid)
[all …]
H A Dteamcity.py32 import bb.event
123 _evt_list = ["bb.runqueue.runQueueExitWait", "bb.event.LogExecTTY", "logging.LogRecord",
124 "bb.build.TaskFailed", "bb.build.TaskBase", "bb.event.ParseStarted",
125 "bb.event.ParseProgress", "bb.event.ParseCompleted", "bb.event.CacheLoadStarted",
126 … "bb.event.CacheLoadProgress", "bb.event.CacheLoadCompleted", "bb.command.CommandFailed",
128 … "bb.event.MultipleProviders", "bb.event.NoProvider", "bb.runqueue.sceneQueueTaskStarted",
130 …"bb.event.BuildBase", "bb.build.TaskStarted", "bb.build.TaskSucceeded", "bb.build.TaskFailedSilent…
131 …"bb.build.TaskProgress", "bb.event.ProcessStarted", "bb.event.ProcessProgress", "bb.event.ProcessF…
208 event = eventHandler.waitEvent(0.25)
209 if not event:
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/csdl/
H A DEvent_v1.xml4 <!--# Redfish Schema: Event v1.11.0 -->
40 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event">
44 <EntityType Name="Event" BaseType="Resource.v1_0_0.Resource" Abstract="true">
45 …scription" String="The `Event` schema describes the JSON payload received by an event destination,…
46 …<Annotation Term="OData.LongDescription" String="This resource contains an event for a Redfish imp…
70 … Property="Description" String="Starting with Redfish Specification v1.6 (Event v1.3), subscriptio…
102 …="Because `EventType` is deprecated as of Redfish Specification v1.6, the event is based on a regi…
117 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_0">
121 <EntityType Name="Event" BaseType="Event.Event">
122 …<NavigationProperty Name="Events" Type="Collection(Event.v1_0_0.EventRecord)" ContainsTarget="true…
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/installed/
H A DEvent_v1.xml4 <!--# Redfish Schema: Event v1.11.0 -->
40 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event">
44 <EntityType Name="Event" BaseType="Resource.v1_0_0.Resource" Abstract="true">
45 …scription" String="The `Event` schema describes the JSON payload received by an event destination,…
46 …<Annotation Term="OData.LongDescription" String="This resource contains an event for a Redfish imp…
70 … Property="Description" String="Starting with Redfish Specification v1.6 (Event v1.3), subscriptio…
102 …="Because `EventType` is deprecated as of Redfish Specification v1.6, the event is based on a regi…
117 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_0">
121 <EntityType Name="Event" BaseType="Event.Event">
122 …<NavigationProperty Name="Events" Type="Collection(Event.v1_0_0.EventRecord)" ContainsTarget="true…
[all …]
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/core/
H A Devent.c16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 #include <core/event.h>
26 nvkm_event_put(struct nvkm_event *event, u32 types, int index) in nvkm_event_put() argument
28 assert_spin_locked(&event->refs_lock); in nvkm_event_put()
30 nvkm_trace(event->subdev, "event: decr %08x on %d\n", types, index); in nvkm_event_put()
34 if (--event->refs[index * event->types_nr + type] == 0) { in nvkm_event_put()
35 nvkm_trace(event->subdev, "event: blocking %d on %d\n", type, index); in nvkm_event_put()
36 if (event->func->fini) in nvkm_event_put()
37 event->func->fini(event, 1 << type, index); in nvkm_event_put()
43 nvkm_event_get(struct nvkm_event *event, u32 types, int index) in nvkm_event_get() argument
[all …]
/openbmc/sdeventplus/src/sdeventplus/
H A Devent.cpp1 #include <systemd/sd-event.h>
3 #include <sdeventplus/event.hpp>
14 Event::Event(sd_event* event, const internal::SdEvent* sdevent) : in Event() function in sdeventplus::Event
15 sdevent(sdevent), event(event, sdevent, true) in Event()
18 Event::Event(sd_event* event, std::false_type, in Event() function in sdeventplus::Event
20 sdevent(sdevent), event(std::move(event), sdevent, true) in Event()
23 Event::Event(const Event& other, sdeventplus::internal::NoOwn) : in Event() function in sdeventplus::Event
24 sdevent(other.sdevent), event(other.get(), other.getSdEvent(), false) in Event()
27 Event Event::get_new(const internal::SdEvent* sdevent) in get_new()
29 sd_event* event = nullptr; in get_new() local
[all …]
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-bus-event_source-devices-dfl_fme13 event = "config:0-11" - event ID
14 evtype = "config:12-15" - event type
15 portid = "config:16-23" - event source
19 fab_mmio_read = "event=0x06,evtype=0x02,portid=0xff"
21 It shows this fab_mmio_read is a fabric type (0x02) event with
22 0x06 local event id for overall monitoring (portid=0xff).
37 a single performance monitoring event supported by this fme pmu.
38 The name of the file is the name of the event.
45 clock = "event=0x00,evtype=0x00,portid=0xff"
49 cache_read_hit = "event=0x00,evtype=0x01,portid=0xff"
[all …]
/openbmc/linux/kernel/events/
H A Dcore.c176 static bool is_kernel_event(struct perf_event *event) in is_kernel_event() argument
178 return READ_ONCE(event->owner) == TASK_TOMBSTONE; in is_kernel_event()
198 * - removing the last event from a task ctx; this is relatively straight
201 * - adding the first event to a task ctx; this is tricky because we cannot
212 struct perf_event *event; member
220 struct perf_event *event = efs->event; in event_function() local
221 struct perf_event_context *ctx = event->ctx; in event_function()
256 efs->func(event, cpuctx, ctx, efs->data); in event_function()
263 static void event_function_call(struct perf_event *event, event_f func, void *data) in event_function_call() argument
265 struct perf_event_context *ctx = event->ctx; in event_function_call()
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Devent.py2 BitBake 'Event' implementation
24 # This is the pid for which we should generate the event. This is set when
29 logger = logging.getLogger('BitBake.Event')
31 class Event(object): class
38 class HeartbeatEvent(Event):
42 event is more suitable for doing some task-independent work occasionally."""
44 Event.__init__(self)
71 _should_exit = threading.Event()
99 def execute_handler(name, handler, event, d): argument
100 event.data = d
[all …]
/openbmc/linux/tools/testing/selftests/powerpc/pmu/ebb/
H A Devent_attributes_test.c13 * Test various attributes of the EBB event are enforced.
17 struct event event, leader; in event_attributes() local
21 event_init(&event, 0x1001e); in event_attributes()
22 event_leader_ebb_init(&event); in event_attributes()
24 FAIL_IF(event_open(&event)); in event_attributes()
25 event_close(&event); in event_attributes()
28 event_init(&event, 0x001e); /* CYCLES - no PMC specified */ in event_attributes()
29 event_leader_ebb_init(&event); in event_attributes()
31 FAIL_IF(event_open(&event) == 0); in event_attributes()
34 event_init(&event, 0x2001e); in event_attributes()
[all …]
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dfweh.c19 * struct brcmf_fweh_queue_item - event item on event queue.
22 * @code: event code.
23 * @ifidx: interface index related to this event.
25 * @emsg: common parameters of the firmware event message.
27 * @data: event specific data part of the firmware event.
51 /* array for mapping code to event name */
58 * brcmf_fweh_event_name() - returns name for given event code.
79 * brcmf_fweh_queue_event() - create and queue event.
81 * @fweh: firmware event handling info.
82 * @event: event queue entry.
[all …]
/openbmc/linux/tools/perf/util/
H A Dsession.c43 union perf_event *event, u64 file_offset, in perf_session__process_compressed_event() argument
75 src = (void *)event + sizeof(struct perf_record_compressed); in perf_session__process_compressed_event()
76 src_size = event->pack.header.size - sizeof(struct perf_record_compressed); in perf_session__process_compressed_event()
104 union perf_event *event,
188 struct ordered_event *event) in ordered_events__deliver_event() argument
193 return perf_session__deliver_event(session, event->event, in ordered_events__deliver_event()
194 session->tool, event->file_offset, in ordered_events__deliver_event()
195 event->file_path); in ordered_events__deliver_event()
262 * kernel MMAP event, in perf_event__process_mmap(). in __perf_session__new()
324 union perf_event *event in process_event_synth_tracing_data_stub()
[all …]
/openbmc/linux/Documentation/trace/
H A Dboottime-trace.rst13 device initialization with full features of ftrace including per-event
37 Output trace-event data on printk buffer too.
66 (you can enable it by the "traceon" event trigger action)
81 ftrace.[instance.INSTANCE.]events = EVENT[, EVENT2[...]]
82 Enable given events on boot. You can use a wild card in EVENT.
94 Ftrace Per-Event Options
97 These options are setting per-event options.
99 ftrace.[instance.INSTANCE.]event.GROUP.EVENT.enable
100 Enable GROUP:EVENT tracing.
102 ftrace.[instance.INSTANCE.]event.GROUP.enable
[all …]
/openbmc/phosphor-webui/app/common/directives/
H A Dlog-event.html1 <div class="row column event-log__single-event"
2 ng-class="{'active': event.meta, 'selected': event.selected}">
4 <div class="inline__confirm" ng-class="{active: event.confirm}">
6 …<p class="h3"><i></i>Are you sure you want to <strong class="ng-binding">delete this event</strong…
9 <button class="btn-primary" ng-click="accept(event)">Yes</button>
10 <button class="btn-primary" ng-click="event.confirm=false;">No</button>
14 <div class="column small-1 large-2 event-log__col-check">
16 <input type="checkbox" name="events__check" ng-click="event.selected= ! event.selected"
17 ng-checked="event.selected"/>
21 <div class="column small-9 large-10 event-log__event-info"
[all …]
/openbmc/openbmc-test-automation/redfish/systems/eventlog/
H A Dtest_event_logging.robot24 Event Log Check After BMC Reboot
25 [Documentation] Check event log after BMC rebooted.
28 Redfish Purge Event Log
29 Event Log Should Not Exist
36 Event Log Should Not Exist
39 Event Log Check After Host Poweron
40 [Documentation] Check event log after host has booted.
43 Redfish Purge Event Log
44 Event Log Should Not Exist
49 Event Log Should Not Exist
[all …]
/openbmc/linux/tools/perf/pmu-events/arch/arm64/fujitsu/a64fx/
H A Dother.json3 "PublicDescription": "This event counts the occurrence count of the micro-operation split.",
6 "BriefDescription": "This event counts the occurrence count of the micro-operation split."
9 …"PublicDescription": "This event counts every cycle that no operation was committed because the ol…
12 …"BriefDescription": "This event counts every cycle that no operation was committed because the old…
15 …"PublicDescription": "This event counts every cycle that no instruction was committed because the …
18 …"BriefDescription": "This event counts every cycle that no instruction was committed because the o…
21 …"PublicDescription": "This event counts every cycle that no instruction was committed because the …
24 …"BriefDescription": "This event counts every cycle that no instruction was committed because the o…
27 …"PublicDescription": "This event counts every cycle that no instruction was committed because the …
30 …"BriefDescription": "This event counts every cycle that no instruction was committed because the o…
[all …]
H A Dpipeline.json9 "PublicDescription": "This event counts valid cycles of EAGA pipeline.",
12 "BriefDescription": "This event counts valid cycles of EAGA pipeline."
15 "PublicDescription": "This event counts valid cycles of EAGB pipeline.",
18 "BriefDescription": "This event counts valid cycles of EAGB pipeline."
21 "PublicDescription": "This event counts valid cycles of EXA pipeline.",
24 "BriefDescription": "This event counts valid cycles of EXA pipeline."
27 "PublicDescription": "This event counts valid cycles of EXB pipeline.",
30 "BriefDescription": "This event counts valid cycles of EXB pipeline."
33 "PublicDescription": "This event counts valid cycles of FLA pipeline.",
36 "BriefDescription": "This event counts valid cycles of FLA pipeline."
[all …]

12345678910>>...278