HomeSort by relevance Sort by last modified time
    Searched defs:Event (Results 26 - 50 of 542) sorted by null

12 3 4 5 6 7 8 91011>>

  /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/MdeModulePkg/Universal/Disk/RamDiskDxe/
RamDiskDriver.c 48 @param[in] Event Event whose notification function is being invoked.
56 IN EFI_EVENT Event,
64 gBS->CloseEvent (Event);
131 EFI_EVENT Event;
187 &Event
  /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 35 // If Event is NULL, then blocking I/O is performed. If Event is not NULL and
37 // Event will be signaled when the erase request is completed.
39 EFI_EVENT Event;
41 // Defines whether the signaled event encountered an error.
60 @retval EFI_SUCCESS The erase request was queued if Event is not
62 device if the Event is NULL.to the device.
DiskIo2.h 33 // If Event is NULL, then blocking I/O is performed.
34 // If Event is not NULL and non-blocking I/O is supported, then non-blocking I/O is performed,
35 // and Event will be signaled when the I/O request is completed.
36 // The caller must be prepared to handle the case where the callback associated with Event occurs
39 EFI_EVENT Event;
42 // Defines whether or not the signaled event encountered an error.
74 @retval EFI_SUCCESS If Event is NULL (blocking I/O): The data was read correctly from the device.
75 If Event is not NULL (asynchronous I/O): The request was successfully queued for processing.
76 Event will be signaled upon completion.
106 @retval EFI_SUCCESS If Event is NULL (blocking I/O): The data was written correctly to the device.
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/IncompatiblePciDeviceSupportDxe/
IncompatiblePciDeviceSupport.c 102 @param[in] Event Event whose notification function is being invoked.
111 IN EFI_EVENT Event,
129 // Close the event and deregister this callback.
131 Status = gBS->CloseEvent (Event);
270 EFI_EVENT Event;
320 LegacyBiosInstalled, NULL /* Context */, &Event);
325 Status = gBS->RegisterProtocolNotify (&gEfiLegacyBiosProtocolGuid, Event,
331 Status = gBS->SignalEvent (Event);
348 CloseStatus = gBS->CloseEvent (Event);
    [all...]
  /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
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/FvbRuntimeDxe/
FvbServiceDxe.c 36 Call back function on EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.
42 @param Event Event whose notification function is being invoked.
50 IN EFI_EVENT Event,
197 EFI_EVENT Event;
205 &Event
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Event.java 32 * This class provides description of event request.
34 public class Event {
43 /** List of event modifiers. */
49 Event(byte eventKind, byte suspendPolicy, List<EventMod> mods) {
  /external/autotest/frontend/client/src/autotest/common/ui/
ToggleLink.java 3 import com.google.gwt.event.dom.client.ClickEvent;
4 import com.google.gwt.event.dom.client.ClickHandler;
5 import com.google.gwt.event.dom.client.DomEvent;
6 import com.google.gwt.event.shared.HandlerRegistration;
7 import com.google.gwt.user.client.Event;
39 public void onClick(ClickEvent event) {
41 // re-fire the event with this as the source
42 DomEvent.fireNativeEvent(Event.getCurrentEvent(), this);
  /external/autotest/venv/lucifer/
eventlib.py 5 """Event subprocess module.
7 Event subprocesses are subprocesses that print events to stdout.
9 Each event is one line of ASCII text with a terminating newline
10 character. The event is identified with one of the preset strings in
11 Event. The event string may be followed with a single space and a
13 the event handler.
15 run_event_command() starts such a process with a synchronous event
32 class Event(enum.Enum):
33 """Status change event enu
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/listeners/
VerificationStartedNotifier.java 24 VerificationStartedEvent event = new Event(originalMockingDetails); local
26 listener.onVerificationStarted(event);
28 return event.getMock();
31 static class Event implements VerificationStartedEvent {
35 public Event(MockingDetails originalMockingDetails) {
  /external/nist-sip/java/gov/nist/javax/sip/header/
Event.java 35 * Event SIP Header.
45 public class Event extends ParametersHeader implements EventHeader {
55 * Creates a new instance of Event
57 public Event() {
58 super(EVENT);
126 * Return true if the given event header matches the supplied one.
128 * @param matchTarget -- event header to match against.
130 public boolean match(Event matchTarget) {
  /external/sl4a/Common/src/com/googlecode/android_scripting/event/
Event.java 17 package com.googlecode.android_scripting.event;
21 public class Event {
27 public Event(String name, Object data) {
  /external/tensorflow/tensorflow/stream_executor/
event.h 33 // The Event class, when supported by a platform, enables low-overhead status
34 // reporting for a Stream. An Event is inserted at a location in a stream via
35 // the Stream::ThenRecordEvent() API. From then on, the Event's status can be
36 // monitored via the nonblocking Event::PollForStatus() call.
37 class Event {
39 // Potential states for an Event. If PollForStatus() returns anything aside
50 explicit Event(StreamExecutor* stream_exec); // NOLINT
52 // Releases any resources held by the Event object.
53 ~Event();
59 // Returns the current Status for the event
    [all...]
  /frameworks/native/cmds/surfacereplayer/replayer/
Event.h 27 class Event {
29 Event(Increment::IncrementCase);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
DisplayAnalyzer.h 43 struct Event {
51 inline void postEvent(Event& e);
52 inline bool getEvent(Event& e);
63 Vector<Event> mPendingEvents;
  /system/chre/core/include/chre/core/
event.h 20 #include "chre_api/chre/event.h"
32 //! the event
39 class Event : public NonCopyable {
41 Event(uint16_t eventType, void *eventData,
  /system/core/fastboot/
socket_mock.h 18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
86 struct Event {
87 Event(EventType _type, std::string _message, ssize_t _status,
96 std::queue<Event> events_;
  /system/extras/boottime_tools/io_analysis/
check_verity.py 55 class Event:
79 self.recents = {} # not finished, key: block_nr, value: event
92 event = Event(time, block_nr, size)
93 self.recents[recent_key] = event
94 self.reads.append(event)
99 per_size_list.append(event)
101 event = self.recents[recent_key]
102 event.set_io_end_time(time)
104 event = self.recents[recent_key
    [all...]
  /external/deqp/framework/common/
tcuThreadUtil.cpp 37 Event::Event (void)
44 Event::~Event (void)
48 void Event::setResult (Result result)
59 Event::Result Event::waitReady (void)
78 Object::Object (const char* type, SharedPtr<Event> e)
88 void Object::read (SharedPtr<Event> event, std::vector<SharedPtr<Event> >& deps
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Event/
Timer.c 17 #include "Event.h"
34 Inserts the timer event.
36 @param Event Points to the internal structure of timer event
42 IN IEVENT *Event
54 TriggerTime = Event->Timer.TriggerTime;
67 InsertTailList (Link, &Event->Timer.Link);
92 Signals any expired event timer.
106 IEVENT *Event;
115 Event = CR (mEfiTimerList.ForwardLink, IEVENT, Timer.Link, EVENT_SIGNATURE);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/
ReportStatusCodeRouterRuntimeDxe.h 41 EFI_EVENT Event;
63 will create an event such that the callback function is only invoked at the TPL for which it was
64 registered. The entity that registers for the callback should also register for an event upon

Completed in 749 milliseconds

12 3 4 5 6 7 8 91011>>