Searched refs:Event (Results 1 - 25 of 94) sorted by relevance

1234

/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DStoppointCallbackContext.h35 StoppointCallbackContext(Event *event, const ExecutionContext &exe_ctx, bool synchronously = false);
49 Event *event; // This is the event, the callback can modify this to indicate
/freebsd-10.0-release/contrib/ntp/include/
H A Dntpsim.h40 } Event; typedef in typeref:struct:__anon3770
43 Event event;
63 Queue events; /* Node Event Queue */
71 Event event P((double, funcTkn));
72 Queue queue P((Event, Queue ));
74 void push P((Event, Queue *));
75 Event pop P((Queue *));
76 void ndbeep P((Node *, Event));
77 void ndeclk P((Node *, Event));
78 void ntptmr P((Node *, Event));
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DPOSIXStopInfo.cpp34 POSIXLimboStopInfo::ShouldStop(Event *event_ptr)
40 POSIXLimboStopInfo::ShouldNotify(Event *event_ptr)
80 POSIXNewThreadStopInfo::ShouldStop(Event *event_ptr)
86 POSIXNewThreadStopInfo::ShouldNotify(Event *event_ptr)
H A DPOSIXStopInfo.h56 ShouldStop(lldb_private::Event *event_ptr);
59 ShouldNotify(lldb_private::Event *event_ptr);
114 ShouldStop(lldb_private::Event *event_ptr);
117 ShouldNotify(lldb_private::Event *event_ptr);
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DEvent.h1 //===-- Event.h -------------------------------------------------*- C++ -*-===//
31 friend class Event;
47 DoOnRemoval (Event *event_ptr)
101 GetEventDataFromEvent (const Event *event_ptr);
104 GetBytesFromEvent (const Event *event_ptr);
107 GetByteSizeFromEvent (const Event *event_ptr);
120 // lldb::Event
122 class Event class in namespace:lldb_private
130 Event (Broadcaster *broadcaster, uint32_t event_type, EventData *data = NULL);
132 Event (uint32_
[all...]
/freebsd-10.0-release/sys/contrib/dev/acpica/compiler/
H A Daslcompile.c568 UINT8 Event; local
572 Event = UtBeginEvent ("Open input and output files");
573 UtEndEvent (Event);
575 Event = UtBeginEvent ("Preprocess input file");
583 UtEndEvent (Event);
588 UtEndEvent (Event);
592 Event = UtBeginEvent ("Parse source code and build parse tree");
594 UtEndEvent (Event);
623 Event = UtBeginEvent ("Flush source input");
631 UtEndEvent (Event);
847 ASL_EVENT_INFO *Event; local
[all...]
/freebsd-10.0-release/sys/contrib/dev/acpica/components/events/
H A Devxfevnt.c179 * PARAMETERS: Event - The fixed eventto be enabled
190 UINT32 Event,
200 /* Decode the Fixed Event */
202 if (Event > ACPI_EVENT_MAX)
212 AcpiGbl_FixedEventInfo[Event].EnableRegisterId,
222 AcpiGbl_FixedEventInfo[Event].EnableRegisterId, &Value);
231 "Could not enable %s event", AcpiUtGetEventName (Event)));
245 * PARAMETERS: Event - The fixed event to be disabled
256 UINT32 Event,
266 /* Decode the Fixed Event */
[all...]
H A Devevent.c3 * Module Name: evevent - Fixed Event handling and dispatch
61 UINT32 Event);
252 "Fixed Event Block: Enable %08X Status %08X\n",
288 * PARAMETERS: Event - Event type
301 UINT32 Event)
310 AcpiGbl_FixedEventInfo[Event].StatusRegisterId,
317 if (!AcpiGbl_FixedEventHandlers[Event].Handler)
320 AcpiGbl_FixedEventInfo[Event].EnableRegisterId,
325 AcpiUtGetEventName (Event), Even
300 AcpiEvFixedEventDispatch( UINT32 Event) argument
[all...]
H A Devxface.c609 * is invoked upon each incoming GPE and Fixed Event. It is
663 * PARAMETERS: Event - Event type to enable.
677 UINT32 Event,
689 if (Event > ACPI_EVENT_MAX)
702 if (AcpiGbl_FixedEventHandlers[Event].Handler)
710 AcpiGbl_FixedEventHandlers[Event].Handler = Handler;
711 AcpiGbl_FixedEventHandlers[Event].Context = Context;
713 Status = AcpiEnableEvent (Event, 0);
718 AcpiUtGetEventName (Event), Even
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadPlanBase.h38 virtual bool ShouldStop (Event *event_ptr);
39 virtual Vote ShouldReportStop (Event *event_ptr);
58 virtual bool DoPlanExplainsStop (Event *event_ptr);
H A DThreadPlanStepOverBreakpoint.h30 virtual bool ShouldStop (Event *event_ptr);
37 virtual bool ShouldAutoContinue(Event *event_ptr);
40 virtual bool DoPlanExplainsStop (Event *event_ptr);
H A DThreadPlanStepOverRange.h36 virtual bool ShouldStop (Event *event_ptr);
39 virtual bool DoPlanExplainsStop (Event *event_ptr);
H A DThreadPlan.h352 PlanExplainsStop (Event *event_ptr);
355 ShouldStop (Event *event_ptr) = 0;
358 ShouldAutoContinue (Event *event_ptr)
367 ShouldReportStop (Event *event_ptr);
370 ShouldReportRun (Event *event_ptr);
536 DoPlanExplainsStop (Event *event_ptr) = 0;
626 ShouldStop (Event *event_ptr);
648 DoPlanExplainsStop (Event *event_ptr);
H A DThreadPlanStepInstruction.h30 virtual bool ShouldStop (Event *event_ptr);
37 virtual bool DoPlanExplainsStop (Event *event_ptr);
H A DStopInfo.h77 ShouldStopSynchronous (Event *event_ptr)
90 ShouldNotify (Event *event_ptr)
173 // Event is removed from the event queue. ProcessEventData::DoOnRemoval does the job.
176 PerformAction (Event *event_ptr)
181 DoShouldNotify (Event *event_ptr)
193 ShouldStop (Event *event_ptr)
H A DThreadList.h92 ShouldStop (Event *event_ptr);
95 ShouldReportStop (Event *event_ptr);
98 ShouldReportRun (Event *event_ptr);
H A DThreadPlanRunToAddress.h50 ShouldStop (Event *event_ptr);
69 DoPlanExplainsStop (Event *event_ptr);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DEvent.cpp1 //===-- Event.cpp -----------------------------------------------*- C++ -*-===//
14 #include "lldb/Core/Event.h"
28 // Event constructor
30 Event::Event (Broadcaster *broadcaster, uint32_t event_type, EventData *data) : function in class:Event
37 Event::Event(uint32_t event_type, EventData *data) : function in class:Event
46 // Event destructor
48 Event::~Event ()
[all...]
H A DStreamAsynchronousIO.cpp14 #include "lldb/Core/Event.h"
41 EventSP new_event_sp (new Event (m_broadcast_event_type, data_bytes_ap.release()));
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DStoppointCallbackContext.cpp26 StoppointCallbackContext::StoppointCallbackContext(Event *e, const ExecutionContext &exe_ctx, bool synchronously) :
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBEvent.cpp16 #include "lldb/Core/Event.h"
35 m_event_sp (new Event (event_type, new EventDataBytes (cstr, cstr_len))),
71 Event *lldb_event = get();
86 const Event *lldb_event = get();
108 const Event *lldb_event = get();
117 const Event *lldb_event = get();
136 Event *lldb_event = get();
156 Event *lldb_event = get();
167 Event *
188 SBEvent::reset (Event* event_pt
[all...]
/freebsd-10.0-release/contrib/ntp/ntpd/
H A Dntpsim.c21 void (*funcPtr[]) (Node *, Event) = {
35 Event e;
116 Event
122 Event e;
134 Event e,
152 Event e,
167 Event
172 Event ret;
191 Event e
205 Event
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBEvent.h89 reset (lldb_private::Event* event);
91 lldb_private::Event *
97 mutable lldb_private::Event *m_opaque_ptr;
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanStepOverBreakpoint.cpp62 ThreadPlanStepOverBreakpoint::DoPlanExplainsStop (Event *event_ptr)
77 ThreadPlanStepOverBreakpoint::ShouldStop (Event *event_ptr)
162 ThreadPlanStepOverBreakpoint::ShouldAutoContinue (Event *event_ptr)
/freebsd-10.0-release/sys/contrib/dev/acpica/components/executer/
H A Dexsystem.c275 Status = AcpiOsSignalSemaphore (ObjDesc->Event.OsSemaphore, 1);
310 Status = AcpiExSystemWaitSemaphore (ObjDesc->Event.OsSemaphore,
348 (void) AcpiOsDeleteSemaphore (ObjDesc->Event.OsSemaphore);
349 ObjDesc->Event.OsSemaphore = TempSemaphore;

Completed in 217 milliseconds

1234