HomeSort by: relevance | last modified time | path
    Searched refs:Event (Results 1 - 25 of 165) sorted by relevancy

1 2 3 4 5 6 7

  /src/sys/external/bsd/acpica/dist/compiler/
aslcompile.c 34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
95 UINT8 Event;
100 Event = UtBeginEvent ("Open input and output files");
101 UtEndEvent (Event);
103 Event = UtBeginEvent ("Preprocess input file");
119 UtEndEvent (Event);
123 UtEndEvent (Event);
128 Event = UtBeginEvent ("Parse source code and build parse tree");
130 UtEndEvent (Event);
168 Event = UtBeginEvent ("Flush source input")
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
tsan_test_util_posix.cc 192 struct Event {
219 Event(Type type, const void *ptr = 0, uptr arg = 0, uptr arg2 = 0)
239 atomic_uintptr_t event; // Event*
242 void send(Event *ev);
243 void HandleEvent(Event *ev);
246 void ScopedThread::Impl::HandleEvent(Event *ev) {
252 case Event::READ:
253 case Event::WRITE: {
255 if (ev->type == Event::READ)
    [all...]
  /src/sys/external/bsd/acpica/dist/events/
evxfevnt.c 3 * Module Name: evxfevnt - External Interfaces, ACPI event disable/enable
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
180 * PARAMETERS: Event - The fixed eventto be enabled
185 * DESCRIPTION: Enable an ACPI event (fixed)
191 UINT32 Event,
208 /* Decode the Fixed Event */
210 if (Event > ACPI_EVENT_MAX)
216 * Enable the requested fixed event (by writing a one to the enable
220 AcpiGbl_FixedEventInfo[Event].EnableRegisterId,
230 AcpiGbl_FixedEventInfo[Event].EnableRegisterId, &Value)
    [all...]
evevent.c 3 * Module Name: evevent - Fixed Event handling and dispatch
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
61 UINT32 Event);
180 * DESCRIPTION: Install the fixed event handlers and disable all fixed events.
193 * Initialize the structure that keeps track of fixed event handlers and
201 /* Disable the fixed event */
257 "Fixed Event Block: Enable %08X Status %08X\n",
265 /* Both the status and enable bits must be on for this event */
271 * Found an active (signalled) event. Invoke global event
    [all...]
  /src/external/bsd/ntp/dist/include/
ntpsim.h 5 * The header file for the ntp discrete event simulator.
45 /* Discrete Event Queue
47 * The NTP simulator is a discrete event simulator.
49 * Central to this simulator is an event queue which is a priority queue
50 * in which the "priority" is given by the time of arrival of the event.
59 BEEP, /* Event to record simulator stats */
60 CLOCK, /* Event to advance the clock to the specified time */
61 TIMER, /* Event that designates a timer interrupt. */
62 PACKET /* Event that designates arrival of a packet */
66 /* Event information *
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/lib/
event.c 1 /* $NetBSD: event.c,v 1.3 2018/08/16 18:22:05 jmcneill Exp $ */
9 event.c
37 EFI_EVENT Event;
40 // Create the event
50 &Event
56 // Register for protocol notifactions on this event
63 Event,
70 // Kick the event so we will perform an initial pass of
74 uefi_call_wrapper(BS->SignalEvent, 1, Event);
75 return Event;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/DirectoryWatcher/mac/
DirectoryWatcher-mac.cpp 50 std::function<void(llvm::ArrayRef<DirectoryWatcher::Event>, bool)>
64 DirectoryWatcher::Event(
65 DirectoryWatcher::Event::EventKind::WatcherGotInvalidated, ""),
76 std::function<void(llvm::ArrayRef<Event>, bool)> Receiver;
82 std::function<void(llvm::ArrayRef<DirectoryWatcher::Event>, bool)> Receiver;
86 std::function<void(llvm::ArrayRef<DirectoryWatcher::Event>, bool)>
112 std::vector<DirectoryWatcher::Event> Events;
118 Events.emplace_back(DirectoryWatcher::Event{
119 DirectoryWatcher::Event::EventKind::WatcherGotInvalidated, ""});
126 Events.emplace_back(DirectoryWatcher::Event{
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/DirectoryWatcher/linux/
DirectoryWatcher-linux.cpp 86 std::queue<DirectoryWatcher::Event> Events;
89 void push_back(const DirectoryWatcher::Event::EventKind K,
99 // event to return.
100 DirectoryWatcher::Event pop_front_blocking() {
106 DirectoryWatcher::Event Front = Events.front();
119 std::function<void(llvm::ArrayRef<Event>, bool)> Receiver,
142 std::function<void(llvm::ArrayRef<Event>, bool)> Receiver;
161 // Push event of WatcherGotInvalidated kind to the Queue to stop the loop.
168 Queue.push_back(DirectoryWatcher::Event::EventKind::WatcherGotInvalidated,
235 // event for stopping, it must be an inotify event ready for reading
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/
RetireControlUnitStatistics.cpp 31 void RetireControlUnitStatistics::onEvent(const HWInstructionEvent &Event) {
32 if (Event.Type == HWInstructionEvent::Dispatched) {
34 static_cast<const HWInstructionDispatchedEvent &>(Event).MicroOpcodes;
38 if (Event.Type == HWInstructionEvent::Retired) {
39 unsigned ReleasedEntries = Event.IR.getInstruction()->getDesc().NumMicroOps;
DispatchStatistics.cpp 21 void DispatchStatistics::onEvent(const HWStallEvent &Event) {
22 if (Event.Type < HWStallEvent::LastGenericEvent)
23 HWStalls[Event.Type]++;
26 void DispatchStatistics::onEvent(const HWInstructionEvent &Event) {
27 if (Event.Type != HWInstructionEvent::Dispatched)
30 const auto &DE = static_cast<const HWInstructionDispatchedEvent &>(Event);
SummaryView.cpp 40 void SummaryView::onEvent(const HWInstructionEvent &Event) {
41 if (Event.Type == HWInstructionEvent::Dispatched)
42 LastInstructionIdx = Event.IR.getSourceIndex();
46 if (Event.Type != HWInstructionEvent::Retired ||
47 Event.IR.getSourceIndex() >= Source.size())
54 const Instruction &Inst = *Event.IR.getInstruction();
DispatchStatistics.h 69 void onEvent(const HWStallEvent &Event) override;
71 void onEvent(const HWInstructionEvent &Event) override;
SchedulerStatistics.cpp 42 // In future we should add a new "memory queue" event type, so that we stop
44 void SchedulerStatistics::onEvent(const HWInstructionEvent &Event) {
45 if (Event.Type == HWInstructionEvent::Issued) {
46 const Instruction &Inst = *Event.IR.getInstruction();
48 } else if (Event.Type == HWInstructionEvent::Dispatched) {
49 const Instruction &Inst = *Event.IR.getInstruction();
50 const unsigned Index = Event.IR.getSourceIndex();
61 } else if (Event.Type == HWInstructionEvent::Executed) {
62 const Instruction &Inst = *Event.IR.getInstruction();
RetireControlUnitStatistics.h 52 void onEvent(const HWInstructionEvent &Event) override;
  /src/external/apache2/llvm/dist/clang/include/clang/DirectoryWatcher/
DirectoryWatcher.h 22 /// Invokes client-provided function on every filesystem event in the watched
24 /// found, an event is synthesized as if the file was added.
41 /// event occurs during the initial scan but that would introduce continuous
66 struct Event {
73 /// The DirectoryWatcher that originated this event is no longer valid and
88 /// The only proper response to this kind of event is to destruct the
94 /// Filename that this event is related to or an empty string in
95 /// case this event is related to the watched directory itself.
98 Event(EventKind Kind, llvm::StringRef Filename)
108 std::function<void(llvm::ArrayRef<DirectoryWatcher::Event> Events
    [all...]
  /src/games/trek/
warp.c 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
167 percent = Event[i].evcode;
169 Event[i].date += time;
179 memcpy(p, Event, sizeof Event);
180 p += sizeof Event;
186 if (Event[i].evcode == E_FIXDV)
187 reschedule(&Event[i], Event[i].date - time);
damaged.c 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
47 ** event list for a "device fix" action on that device.
54 struct event *e;
60 e = &Event[i];
67 /* device fix not in event list -- device must not be broken */
systemname.c 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
65 i = Event[i & Q_SYSTEM].systemname;
externs.c 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
106 /* dynamic event list; one entry per pending event */
107 struct event Event[MAXEVENTS];
  /src/external/apache2/llvm/dist/clang/lib/DirectoryWatcher/
DirectoryScanner.cpp 42 std::vector<DirectoryWatcher::Event>
44 std::vector<DirectoryWatcher::Event> Events;
48 Events.emplace_back(DirectoryWatcher::Event{
49 DirectoryWatcher::Event::EventKind::Modified, File});
DirectoryScanner.h 21 /// Create event with EventKind::Added for every element in \p Scan.
22 std::vector<DirectoryWatcher::Event>
  /src/external/apache2/llvm/dist/clang/lib/DirectoryWatcher/default/
DirectoryWatcher-not-implemented.cpp 16 std::function<void(llvm::ArrayRef<DirectoryWatcher::Event>, bool)> Receiver,
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_range.cpp 19 struct Event {
25 InternalMmapVector<Event> events;
39 [](const Event &lh, const Event &rh) { return lh.val < rh.val; });
  /src/sys/external/isc/libsodium/dist/test/default/
pre.js.inc 16 var event = new Event('test-output');
17 event.data = x;
18 window.dispatchEvent(event);
  /src/sys/external/bsd/acpica/dist/executer/
exsystem.c 34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
276 Status = AcpiOsSignalSemaphore (ObjDesc->Event.OsSemaphore, 1);
294 * event.
311 Status = AcpiExSystemWaitSemaphore (ObjDesc->Event.OsSemaphore,
327 * DESCRIPTION: Reset an event to a known state.
349 (void) AcpiOsDeleteSemaphore (ObjDesc->Event.OsSemaphore);
350 ObjDesc->Event.OsSemaphore = TempSemaphore;

Completed in 69 milliseconds

1 2 3 4 5 6 7