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

12345

/freebsd-10-stable/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-stable/sys/contrib/dev/acpica/compiler/
H A Daslcompile.c93 UINT8 Event; local
97 Event = UtBeginEvent ("Open input and output files");
98 UtEndEvent (Event);
100 Event = UtBeginEvent ("Preprocess input file");
115 UtEndEvent (Event);
120 UtEndEvent (Event);
125 Event = UtBeginEvent ("Parse source code and build parse tree");
127 UtEndEvent (Event);
155 Event = UtBeginEvent ("Flush source input");
170 UtEndEvent (Event);
621 ASL_EVENT_INFO *Event; local
[all...]
/freebsd-10-stable/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-stable/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-stable/sys/contrib/dev/acpica/components/events/
H A Devxfevnt.c180 * PARAMETERS: Event - The fixed eventto be enabled
191 UINT32 Event,
201 /* Decode the Fixed Event */
203 if (Event > ACPI_EVENT_MAX)
213 AcpiGbl_FixedEventInfo[Event].EnableRegisterId,
223 AcpiGbl_FixedEventInfo[Event].EnableRegisterId, &Value);
232 "Could not enable %s event", AcpiUtGetEventName (Event)));
246 * PARAMETERS: Event - The fixed event to be disabled
257 UINT32 Event,
267 /* 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.c640 * is invoked upon each incoming GPE and Fixed Event. It is
694 * PARAMETERS: Event - Event type to enable.
708 UINT32 Event,
720 if (Event > ACPI_EVENT_MAX)
733 if (AcpiGbl_FixedEventHandlers[Event].Handler)
741 AcpiGbl_FixedEventHandlers[Event].Handler = Handler;
742 AcpiGbl_FixedEventHandlers[Event].Context = Context;
744 Status = AcpiEnableEvent (Event, 0);
749 AcpiUtGetEventName (Event), Even
[all...]
/freebsd-10-stable/contrib/ntp/include/
H A Dntpsim.h43 /* Discrete Event Queue
57 BEEP, /* Event to record simulator stats */
58 CLOCK, /* Event to advance the clock to the specified time */
59 TIMER, /* Event that designates a timer interrupt. */
60 PACKET /* Event that designates arrival of a packet */
64 /* Event information */
75 } Event; typedef in typeref:struct:__anon36
134 Event *event (double t, funcTkn f);
135 void sim_event_timer (Event *e);
138 void sim_update_clocks (Event *
[all...]
/freebsd-10-stable/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.h104 ShouldStop (Event *event_ptr);
107 ShouldReportStop (Event *event_ptr);
110 ShouldReportRun (Event *event_ptr);
H A DThreadPlanCallFunction.h47 ShouldStop (Event *event_ptr);
50 ShouldReportStop(Event *event_ptr);
135 DoPlanExplainsStop (Event *event_ptr);
H A DThreadPlanRunToAddress.h50 ShouldStop (Event *event_ptr);
69 DoPlanExplainsStop (Event *event_ptr);
/freebsd-10-stable/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"
43 EventSP new_event_sp (new Event (m_broadcast_event_type, data_bytes_ap.release()));
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Breakpoint/
H A DStoppointCallbackContext.cpp26 StoppointCallbackContext::StoppointCallbackContext(Event *e, const ExecutionContext &exe_ctx, bool synchronously) :
/freebsd-10-stable/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-stable/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-stable/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-stable/sys/contrib/dev/acpica/components/executer/
H A Dexsystem.c271 Status = AcpiOsSignalSemaphore (ObjDesc->Event.OsSemaphore, 1);
306 Status = AcpiExSystemWaitSemaphore (ObjDesc->Event.OsSemaphore,
344 (void) AcpiOsDeleteSemaphore (ObjDesc->Event.OsSemaphore);
345 ObjDesc->Event.OsSemaphore = TempSemaphore;

Completed in 403 milliseconds

12345