HomeSort by relevance Sort by last modified time
    Searched defs:Event (Results 1 - 25 of 448) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/chre/core/
event.cc 17 #include "chre/core/event.h"
22 Event::Event(uint16_t eventType_, void *eventData_,
  /prebuilts/go/darwin-x86/misc/cgo/testplugin/src/issue18676/dynamodbstreamsevt/
definition.go 11 type Event struct{}
13 func (e *Event) Dummy() {}
  /prebuilts/go/linux-x86/misc/cgo/testplugin/src/issue18676/dynamodbstreamsevt/
definition.go 11 type Event struct{}
13 func (e *Event) Dummy() {}
  /external/webrtc/webrtc/base/
event.cc 11 #include "webrtc/base/event.h"
29 Event::Event(bool manual_reset, bool initially_signaled) {
37 Event::~Event() {
41 void Event::Set() {
45 void Event::Reset() {
49 bool Event::Wait(int milliseconds) {
56 Event::Event(bool manual_reset, bool initially_signaled
    [all...]
event.h 26 class Event {
30 Event(bool manual_reset, bool initially_signaled);
31 ~Event();
36 // Wait for the event to become signaled, for the specified number of
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciHotPlugSupport.h 27 EFI_EVENT Event;
41 Event notification function to set Hot Plug controller status.
43 @param Event The event that invoke this function.
50 IN EFI_EVENT Event,
137 Creating event object for PCI Hot Plug controller.
140 @param Event The retuned event that invoke this function.
142 @return Status of create event invoken.
148 OUT EFI_EVENT *Event
    [all...]
  /frameworks/native/cmds/surfacereplayer/replayer/
Event.cpp 17 #include "Event.h"
21 Event::Event(Increment::IncrementCase type) : mIncrementType(type) {}
23 void Event::readyToExecute() {
24 changeState(Event::EventState::Waiting);
25 waitUntil(Event::EventState::Signaled);
26 changeState(Event::EventState::Running);
29 void Event::complete() {
30 waitUntil(Event::EventState::Waiting);
31 changeState(Event::EventState::Signaled)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/captureintent/stateful/
Event.java 20 * Defines an event interface that any implementation of this interface can be
23 public interface Event {
  /external/swiftshader/src/Common/
Thread.cpp 21 Event init;
71 Event::Event()
82 Event::~Event()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sched.py 1 """A generally useful event scheduler class.
19 event means calling the action function, passing it the argument
36 Event = namedtuple('Event', 'time, priority, action, argument')
47 """Enter a new event in the queue at an absolute time.
49 Returns an ID for the event which can be used to remove it,
53 event = Event(time, priority, action, argument)
54 heapq.heappush(self._queue, event)
55 return event # The ID
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EsrtDxe/
EsrtImpl.h 56 // Ready to boot event
58 EFI_EVENT Event;
233 before gEfiEndOfDxeEventGroupGuid event signaled
  /device/linaro/bootloader/edk2/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/
PcRtcEntry.c 135 EFI_EVENT Event;
149 &Event
159 &Event
  /external/python/cpython2/Lib/
sched.py 1 """A generally useful event scheduler class.
19 event means calling the action function, passing it the argument
36 Event = namedtuple('Event', 'time, priority, action, argument')
47 """Enter a new event in the queue at an absolute time.
49 Returns an ID for the event which can be used to remove it,
53 event = Event(time, priority, action, argument)
54 heapq.heappush(self._queue, event)
55 return event # The I
    [all...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
event.c 7 event.c
31 EFI_EVENT Event;
34 // Create the event
44 &Event
49 // Register for protocol notifactions on this event
56 Event,
63 // Kick the event so we will perform an initial pass of
67 uefi_call_wrapper(BS->SignalEvent, 1, Event);
68 return Event;
74 IN EFI_EVENT Event,
    [all...]
  /external/toolchain-utils/cros_utils/
timeline.py 12 class Event(object):
13 """One event on the timeline."""
26 def Record(self, event):
28 assert e.name != event, ('The event {0} is already recorded.'
29 .format(event))
30 cur_event = Event(name=event, cur_time=time.time())
42 def GetEventTime(self, event):
44 if e.name == event
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sched.py 1 """A generally useful event scheduler class.
19 event means calling the action function, passing it the argument
36 Event = namedtuple('Event', 'time, priority, action, argument')
47 """Enter a new event in the queue at an absolute time.
49 Returns an ID for the event which can be used to remove it,
53 event = Event(time, priority, action, argument)
54 heapq.heappush(self._queue, event)
55 return event # The I
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
sched.py 1 """A generally useful event scheduler class.
19 event means calling the action function, passing it the argument
36 Event = namedtuple('Event', 'time, priority, action, argument')
47 """Enter a new event in the queue at an absolute time.
49 Returns an ID for the event which can be used to remove it,
53 event = Event(time, priority, action, argument)
54 heapq.heappush(self._queue, event)
55 return event # The I
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sched.py 1 """A generally useful event scheduler class.
19 event means calling the action function, passing it the argument
36 Event = namedtuple('Event', 'time, priority, action, argument')
47 """Enter a new event in the queue at an absolute time.
49 Returns an ID for the event which can be used to remove it,
53 event = Event(time, priority, action, argument)
54 heapq.heappush(self._queue, event)
55 return event # The I
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sched.py 1 """A generally useful event scheduler class.
19 event means calling the action function, passing it the argument
36 Event = namedtuple('Event', 'time, priority, action, argument')
47 """Enter a new event in the queue at an absolute time.
49 Returns an ID for the event which can be used to remove it,
53 event = Event(time, priority, action, argument)
54 heapq.heappush(self._queue, event)
55 return event # The I
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/SmmControl2OnSmmControlThunk/
SmmControl2OnSmmControlThunk.c 91 This is a notification function registered on EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.
94 @param[in] Event Event whose notification function is being invoked.
101 IN EFI_EVENT Event,
125 EFI_EVENT Event;
141 /// Create event on SetVirtualAddressMap() to convert mSmmControl from a physical address to a virtual address
149 &Event
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
Event.c 14 Event.c
18 Support for Event lib fucntions.
37 Create a protocol notification event and return it.
41 ProtocolGuid - Protocol to register notification event on.
47 NotifyContext - Context passed into Event when it is created.
59 EFI_EVENT Event;
62 // Create the event
70 &Event
75 // Register for protocol notifactions on this event
80 Event,
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/
Event.c 14 Event.c
18 Support for Event lib fucntions.
37 Create a protocol notification event and return it.
41 ProtocolGuid - Protocol to register notification event on.
47 NotifyContext - Context passed into Event when it is created.
59 EFI_EVENT Event;
62 // Create the event
69 &Event
74 // Register for protocol notifactions on this event
78 Event,
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
BlockIo2.h 37 /// If Event is NULL, then blocking I/O is performed.If Event is not NULL and
39 /// Event will be signaled when the read request is completed.
41 EFI_EVENT Event;
44 /// Defines whether or not the signaled event encountered an error.
76 non-blocking I/O is being used, the Event associated with this request will
89 @retval EFI_SUCCESS The read request was queued if Token->Event is
91 device if the Token->Event is NULL.
120 being used, the Event associated with this request will not be signaled.
131 @retval EFI_SUCCESS The write request was queued if Event is not NULL.
    [all...]
EraseBlock.h 32 EFI_EVENT Event;
47 @retval EFI_SUCCESS The erase request was queued if Event is not NULL. The data was
48 erased correctly to the device if the Event is NULL.
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Spi/RuntimeDxe/
PchSpi.c 35 IN EFI_EVENT Event,
46 Event The event registered.
47 Context Event context. Not used in this event handler.
93 EFI_EVENT Event;
159 &Event

Completed in 1526 milliseconds

1 2 3 4 5 6 7 8 91011>>