HomeSort by relevance Sort by last modified time
    Searched defs:Event (Results 1 - 25 of 542) 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_,
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1610/Drivers/IoInitDxe/
IoInitDxe.c 26 IN EFI_EVENT Event,
42 EFI_EVENT Event = NULL;
53 &Event
  /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/tensorflow/tensorflow/stream_executor/
event.cc 16 #include "tensorflow/stream_executor/event.h"
25 Event::Event(StreamExecutor* stream_exec)
30 Event::~Event() {
37 bool Event::Init() {
47 Event::Status Event::PollForStatus() {
  /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...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeCapsuleLibFmp/
DxeCapsuleRuntime.c 35 @param[in] Event Event whose notification function is being invoked.
42 IN EFI_EVENT Event,
80 The constructor function hook VirtualAddressChange event to use ESRT table as capsule routing table.
95 EFI_EVENT Event;
100 Event = NULL;
107 &Event
  /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/OpenPlatformPkg/Chips/Hisilicon/Pv660/Drivers/IoInitDxe/
IoInitDxe.c 53 IN EFI_EVENT Event,
70 EFI_EVENT Event = NULL;
83 &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
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/FlashDeviceLib/
FlashDeviceLibDxeRuntimeSmm.c 37 IN EFI_EVENT Event,
68 EFI_EVENT Event;
106 &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...]
  /art/test/1919-vminit-thread-start-timing/src/art/
Test1919.java 23 for (Event e : getEvents()) {
32 static class Event {
35 public Event(String name, Thread thr) {
41 public static Event[] getEvents() {
44 Event[] es = new Event[Math.min(ns.length, ts.length)];
46 es[i] = new Event(ns[i], ts[i]);

Completed in 2087 milliseconds

1 2 3 4 5 6 7 8 91011>>