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

1 2 3 45 6 7 8 91011>>

  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
SockInterface.c 19 Check whether the Event is in the List.
22 @param[in] Event The event to be checked.
24 @retval TRUE The specific Event exists in the List.
25 @retval FALSE The specific Event is not in the List.
31 IN EFI_EVENT Event
44 if (Event == SockToken->Token->Event) {
53 Call SockTokenExistedInList() to check whether the Event is
57 @param[in] Event The event to be checked.
    [all...]
  /external/python/cpython2/Lib/idlelib/idle_test/
mock_tk.py 7 class Event(object):
8 '''Minimal mock with attributes for testing event handlers.
11 that access attributes of the event passed. If a callback ignores
12 the event, other than the fact that is happened, pass 'event'.
14 Keyboard, mouse, window, and other sources generate Event instances.
15 Event instances have the following attributes: serial (number of
16 event), time (of event), type (of event as number), widget (in whic
    [all...]
  /external/python/cpython3/Lib/idlelib/idle_test/
mock_tk.py 7 class Event:
8 '''Minimal mock with attributes for testing event handlers.
11 that access attributes of the event passed. If a callback ignores
12 the event, other than the fact that is happened, pass 'event'.
14 Keyboard, mouse, window, and other sources generate Event instances.
15 Event instances have the following attributes: serial (number of
16 event), time (of event), type (of event as number), widget (in whic
    [all...]
  /external/python/cpython3/Lib/multiprocessing/
synchronize.py 11 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
330 # Event
333 class Event(object):
  /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 55 FunctionEmittedEvent Event = {NextIndex++, &F, Code, Size, Details};
56 EmittedEvents.push_back(Event);
60 FunctionFreedEvent Event = {NextIndex++, OldPtr};
61 FreedEvents.push_back(Event);
  /external/v8/src/heap/
memory-reducer.h 81 // t' is t if the current event is not a GC event and is now_ms otherwise,
104 struct Event {
119 void NotifyMarkCompact(const Event& event);
120 void NotifyPossibleGarbage(const Event& event);
121 void NotifyBackgroundIdleNotification(const Event& event);
123 // the incoming event
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/job/
MockPriorityJobService.java 40 new TestEnvironment.Event(TestEnvironment.EVENT_START_JOB, params.getJobId()));
48 int event = TestEnvironment.EVENT_STOP_JOB; local
51 event = TestEnvironment.EVENT_PREEMPT_JOB;
55 .add(new TestEnvironment.Event(event, params.getJobId()));
67 private ArrayList<Event> executedEvents = new ArrayList<Event>();
76 public static class Event {
77 public int event; field in class:MockPriorityJobService.TestEnvironment.Event
80 public Event() {
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
AbstractWatchKey.java 38 * Maximum size of event list (in the future this may be tunable)
43 * Special event to signal overflow
45 static final Event<Object> OVERFLOW_EVENT =
46 new Event<Object>(StandardWatchEventKinds.OVERFLOW, null);
65 // maps a context to the last event for the context (iff the last queued
66 // event for the context is an ENTRY_MODIFY event).
102 * Adds the event to this key and signals it.
110 // if the previous event is an OVERFLOW event or this is
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputLogicTestsDeadKeys.java 21 import com.android.inputmethod.event.Event;
29 static class EventList extends ArrayList<Event> {
31 final Event event; local
33 event = Event.createDeadEvent(codePoint, Event.NOT_A_KEY_CODE, null /* next */);
35 event = Event.createSoftwareKeypressEvent(codePoint, Event.NOT_A_KEY_CODE
    [all...]
  /packages/services/Car/tools/emulator/
obd2_to_diagjson.py 90 class Event(object):
148 event = Event()
149 event.setTimestamp(json.timestamp)
150 event.setType(json.type)
152 event.setIntValue(intValue.id, intValue.value)
154 event.setFloatValue(floatValue.id, floatValue.value)
155 event.setStringValue(json.stringValue)
156 return event
159 event = Event(
    [all...]
  /external/deqp/execserver/
xsWin32TestProcess.cpp 75 // Event
77 Event::Event (bool manualReset, bool initialState)
85 Event::~Event (void)
90 void Event::setSignaled (void)
96 void Event::reset (void)
131 Event ioEvent (true, false); // Manual reset, non-signaled state.
158 // \note GetOverlappedResult() will fail with ERROR_IO_INCOMPLETE if IO event is not complete (should be).
226 Event ioEvent (true, false); // Manual reset, not signaled state
    [all...]
  /frameworks/ml/nn/runtime/include/
NeuralNetworksWrapper.h 214 class Event {
216 Event() {}
217 ~Event() { ANeuralNetworksEvent_free(mEvent); }
222 Event(const Event&) = delete;
223 Event& operator=(const Event&) = delete;
228 Event(Event&& other) { *this = std::move(other); }
229 Event& operator=(Event&& other)
355 ANeuralNetworksEvent* event = nullptr; local
    [all...]
  /device/generic/goldfish/camera/fake-pipeline2/
Sensor.h 144 * Interrupt event servicing from the sensor. Only triggers for sensor
148 enum Event {
152 virtual void onSensorEvent(uint32_t frameNumber, Event e,
  /device/google/contexthub/util/nanotool/
nanomessage.h 91 * The base event for all event data.
93 struct Event {
98 * A request to write an event to the ContextHub.
106 * A response to writing an event to the ContextHub.
119 * A response to reading an event from the ContextHub.
147 // Event data associated with this response.
159 * An event used to configure a sensor with specific attributes.
185 struct Configuration : public Event {
  /device/google/cuttlefish_common/guest/hals/camera/fake-pipeline2/
Sensor.h 142 * Interrupt event servicing from the sensor. Only triggers for sensor
146 enum Event {
150 virtual void onSensorEvent(uint32_t frameNumber, Event e,
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/SdMmc/DwMmcHcDxe/
DwMmcHcDxe.h 132 EFI_EVENT Event;
160 EFI_EVENT Event;
206 @param[in] Event If Event is NULL, blocking I/O is performed. If Event is
207 not NULL, then nonblocking I/O is performed, and Event
230 IN EFI_EVENT Event OPTIONAL
635 @param[in] Event If Event is NULL, blocking I/O is performed. If Event is
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/ManagedNetwork/
ManagedNetwork.h 83 EFI_EVENT Event;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/
EfiTpm.h 36 // Standard event types
44 // EFI specific event types
71 TCG_PCRINDEX PCRIndex; // PCRIndex event extended to
72 TCG_EVENTTYPE EventType; // TCG EFI event type
74 UINT32 EventSize; // Size of the event data
75 UINT8 Event[1]; // The event data
116 // This structure is used in EV_EFI_HANDOFF_TABLES event to facilitate
  /device/linaro/bootloader/edk2/EmulatorPkg/EmuGopDxe/
Gop.h 54 EFI_EVENT Event;
177 IN EFI_EVENT Event,
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/FrameworkUefiLib/
UefiLib.c 91 Creates and returns a notification event and registers that event with all the protocol
99 executed. This function returns the notification event that was created.
106 @param ProtocolGuid Supplies GUID of the protocol upon whose installation the event is fired.
107 @param NotifyTpl Supplies the task priority level of the event notifications.
108 @param NotifyFunction Supplies the function to notify when the event is signaled.
114 @return The notification event that was created.
128 EFI_EVENT Event;
135 // Create the event
143 &Event
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/
AtaAtapiPassThru.h 136 EFI_EVENT Event;
496 @param[in] IsSigEvent Indicate whether signal the task event when remove the
525 Call back funtion when the timer event is signaled.
527 @param[in] Event The Event this notify function registered to.
529 Event.
535 EFI_EVENT Event,
550 @param[in] Event If non-blocking I/O is not supported then Event is ignored, and blocking
551 I/O is performed. If Event is NULL, then blocking I/O is performed. If
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Sd/EmmcDxe/
EmmcDxe.h 88 EFI_EVENT Event;
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/SmmCorePerformanceLib/
SmmCorePerformanceLib.c 677 @param Event The event of notify protocol.
678 @param Context Notify event context.
684 IN EFI_EVENT Event,
749 EFI_EVENT Event;
768 &Event
773 // Register for protocol notifications on this event
777 Event,
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SmbiosMeasurementDxe/
SmbiosMeasurementDxe.c 447 @param[in] Event Event whose notification function is being invoked.
454 IN EFI_EVENT Event,
603 EFI_EVENT Event;
634 &Event
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
BlockIoCrypto.h 33 // If Event is NULL, then blocking I/O is performed. If Event is not NULL and
35 // Event will be signaled when the read request is completed and data was
38 EFI_EVENT Event;
40 // Defines whether or not the signaled event encountered an error.
350 I/O is being used, the Event associated with this request will not be signaled.
375 @retval EFI_SUCCESS The read request was queued if Token-> Event is not NULL.
377 Token->Event is NULL.
418 I/O is being used, the Event associated with this request will not be signaled.
441 if Event is not NULL. The data was encrypted (optionally)
    [all...]

Completed in 582 milliseconds

1 2 3 45 6 7 8 91011>>