HomeSort by relevance Sort by last modified time
    Searched refs:Event (Results 26 - 50 of 1413) 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 {
  /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_;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Event.java 29 * This class provides description of event request.
31 public class Event {
36 /** List of event modifiers. */
43 public Event() {
53 public Event(byte eventKind, byte suspendPolicy, EventMod[] mods) {
  /system/chre/core/
event_ref_queue.cc 32 bool EventRefQueue::push(Event *event) {
33 CHRE_ASSERT(event != nullptr);
35 bool pushed = mQueue.push(event);
37 event->incrementRefCount();
43 Event *EventRefQueue::pop() {
46 Event *event = mQueue.front(); local
48 event->decrementRefCount();
50 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 {
  /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...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/trigger/
Trigger.java 21 import com.googlecode.android_scripting.event.Event;
26 * Interface implemented by objects listening to events on the event queue inside of the
32 * Handles an event from the event queue.
34 * @param event
35 * Event to handle
39 void handleEvent(Event event, Context context);
42 * Returns the event name that this {@link Trigger} is interested in
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
DocumentEndEvent.java 23 * This event follows the document's content.
26 public final class DocumentEndEvent extends Event {
39 public boolean is(Event.ID id) {
StreamEndEvent.java 23 * This event is the last event that a parser emits. Together with
24 * {@link StreamStartEvent} (which is the first event a parser emits) they mark
28 * See {@link Event} for an exemplary output.
31 public final class StreamEndEvent extends Event {
37 public boolean is(Event.ID id) {
StreamStartEvent.java 23 * This event is the first event that a parser emits. Together with
24 * {@link StreamEndEvent} (which is the last event a parser emits) they mark the
28 * See {@link Event} for an exemplary output.
31 public final class StreamStartEvent extends Event {
38 public boolean is(Event.ID id) {
  /frameworks/base/tools/aapt2/unflatten/
ResChunkPullParser.cpp 39 ResChunkPullParser::Event ResChunkPullParser::Next() {
44 if (event_ == Event::kStartDocument) {
58 return (event_ = Event::kEndDocument);
62 return (event_ = Event::kBadDocument);
68 return (event_ = Event::kBadDocument);
73 return (event_ = Event::kBadDocument);
77 return (event_ = Event::kBadDocument);
79 return (event_ = Event::kChunk);

Completed in 255 milliseconds

12 3 4 5 6 7 8 91011>>