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

12 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Event/
Event.c 2 UEFI Event support functions implemented in this file.
18 #include "Event.h"
26 /// gEventQueueLock - Protects the event queues
31 /// gEventQueue - A list of event's to notify for each priority level
50 /// 0x80000200 Timer event with a notification function that is
51 /// queue when the event is signaled with SignalEvent()
55 /// 0x80000000 Timer event without a notification function. It can be
60 /// 0x00000100 Generic event with a notification function that
65 /// 0x00000200 Generic event with a notification function that
66 /// is queue when the event is signaled with SignalEvent()
    [all...]
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...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/
Emitable.java 20 import org.yaml.snakeyaml.events.Event;
23 void emit(Event event) throws IOException;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/activity/
DockedFirstAnimationFrameEvent.java 19 import com.android.systemui.recents.events.EventBus.Event;
24 public class DockedFirstAnimationFrameEvent extends Event {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ui/
DraggingInRecentsEndedEvent.java 3 import com.android.systemui.recents.events.EventBus.Event;
6 * This event is sent when the user finished dragging in recents.
8 public class DraggingInRecentsEndedEvent extends Event {
DraggingInRecentsEvent.java 3 import com.android.systemui.recents.events.EventBus.Event;
6 * This event is sent when the user changed how far they are dragging in recents.
8 public class DraggingInRecentsEvent extends Event {
  /frameworks/support/lifecycle/compiler/src/tests/test-data/
InvalidMethodModifier.java 19 import static android.arch.lifecycle.Lifecycle.Event.ON_STOP;
21 import android.arch.lifecycle.Lifecycle.Event;
InvalidFirstArg1.java 3 import static android.arch.lifecycle.Lifecycle.Event.ON_STOP;
5 import android.arch.lifecycle.Lifecycle.Event;
10 public void onStop(Event event) {
TooManyArgs1.java 3 import static android.arch.lifecycle.Lifecycle.Event.ON_ANY;
5 import android.arch.lifecycle.Lifecycle.Event;
11 public void onAny(LifecycleOwner provider, Event event, int x) {
TooManyArgs2.java 3 import static android.arch.lifecycle.Lifecycle.Event.ON_STOP;
5 import android.arch.lifecycle.Lifecycle.Event;
11 public void onStop(LifecycleOwner provider, Event event) {
OnAnyMethod.java 19 import static android.arch.lifecycle.Lifecycle.Event.ON_ANY;
20 import static android.arch.lifecycle.Lifecycle.Event.ON_STOP;
22 import android.arch.lifecycle.Lifecycle.Event;
36 void any(LifecycleOwner provider, Event event){}
  /packages/apps/Camera2/src/com/android/camera/captureintent/event/
EventZoomRatioChanged.java 17 package com.android.camera.captureintent.event;
19 import com.android.camera.captureintent.stateful.Event;
21 public class EventZoomRatioChanged implements Event {
  /external/libmojo/mojo/converters/blink/
blink_input_events_type_converters.h 18 class Event;
25 TypeConverter<std::unique_ptr<blink::WebInputEvent>, ui::Event> {
26 static std::unique_ptr<blink::WebInputEvent> Convert(const ui::Event& input);
  /external/webrtc/webrtc/base/
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
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...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
Combiner.java 17 package com.android.inputmethod.event;
29 * Process an event, possibly combining it with the existing state and return the new event.
31 * If this event does not result in any new event getting passed down the chain, this method
32 * returns null. It may also modify the previous event list if appropriate.
35 * @param event the event to combine with the existing state.
36 * @return the resulting event.
39 Event processEvent(ArrayList<Event> previousEvents, Event event)
    [all...]
HardwareEventDecoder.java 17 package com.android.inputmethod.event;
22 * An event decoder for hardware events.
25 public Event decodeHardwareKey(final KeyEvent keyEvent);
HardwareKeyboardEventDecoder.java 17 package com.android.inputmethod.event;
25 * A hardware event decoder for a hardware qwerty-ish keyboard.
40 public Event decodeHardwareKey(final KeyEvent keyEvent) {
51 return Event.createHardwareKeypressEvent(Event.NOT_A_CODE_POINT, Constants.CODE_DELETE,
58 return Event.createDeadEvent(
68 return Event.createHardwareKeypressEvent(Event.NOT_A_CODE_POINT,
71 return Event.createHardwareKeypressEvent(Constants.CODE_ENTER, keyCode,
74 // If not Enter, then this is just a regular keypress event for a normal characte
    [all...]
  /external/v8/src/base/platform/
condition-variable.h 66 struct Event;
72 Event* Pre() WARN_UNUSED_RESULT;
73 void Post(Event* event, bool result);
76 Event* waitlist() { return waitlist_; }
79 Event* waitlist_;
80 Event* freelist_;
  /system/chre/core/
event_ref_queue.cc 28 bool EventRefQueue::push(Event *event) {
29 CHRE_ASSERT(event != nullptr);
31 bool pushed = mQueue.push(event);
33 event->incrementRefCount();
39 Event *EventRefQueue::pop() {
42 Event *event = mQueue.front(); local
44 event->decrementRefCount();
46 return event;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/events/
StartedDragingEvent.java 24 public class StartedDragingEvent extends EventBus.Event {
StoppedDragingEvent.java 24 public class StoppedDragingEvent extends EventBus.Event {
  /frameworks/support/lifecycle/common/src/main/java/android/arch/lifecycle/
GenericLifecycleObserver.java 26 * Called when a state transition event happens.
28 * @param source The source of the event
29 * @param event The event
31 void onStateChanged(LifecycleOwner source, Lifecycle.Event event);
  /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;
  /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...]

Completed in 1739 milliseconds

12 3 4 5 6 7 8 91011>>