Searched refs:Event (Results 1 - 25 of 88) sorted by path

1234

/frameworks/av/include/media/nbaio/
H A DNBLog.h39 enum Event { enum in class:android::NBLog
49 Entry(Event event, const void *data, size_t length)
57 Event mEvent; // event type
141 void log(Event event, const void *data, size_t length);
/frameworks/av/include/media/stagefright/foundation/
H A DALooper.h67 struct Event { struct in struct:android::ALooper
77 List<Event> mEventQueue;
/frameworks/av/media/libnbaio/
H A DNBLog.cpp150 void NBLog::Writer::log(Event event, const void *data, size_t length)
319 Event event;
328 event = (Event) copy[i - length - 3];
361 event = (Event) copy[i];
379 if (j >= avail || (Event) copy[j] != EVENT_TIMESTAMP) {
/frameworks/av/media/libstagefright/foundation/
H A DALooper.cpp178 List<Event>::iterator it = mEventQueue.begin();
183 Event event;
195 Event event;
/frameworks/base/cmds/hid/src/com/android/commands/hid/
H A DEvent.java28 public class Event { class
77 return "Event{id=" + mId
89 private Event mEvent;
92 mEvent = new Event();
127 public Event build() {
131 throw new IllegalStateException("Event does not contain a command");
158 public Event getNextEvent() throws IOException {
159 Event e = null;
161 Event.Builder eb = new Event
[all...]
H A DHid.java40 private final Event.Reader mReader;
73 mReader = new Event.Reader(new InputStreamReader(in, "UTF-8"));
81 Event e = null;
95 private void process(Event e) {
99 if (Event.COMMAND_DELAY.equals(e.getCommand())) {
101 } else if (Event.COMMAND_REPORT.equals(e.getCommand())) {
111 private void registerDevice(Event e) {
112 if (!Event.COMMAND_REGISTER.equals(e.getCommand())) {
/frameworks/base/
H A Dcompiled-classes-phone607 android.app.usage.UsageEvents$Event
3383 android.provider.ContactsContract$CommonDataKinds$Event
4123 android.util.EventLog$Event
/frameworks/base/core/java/android/app/admin/
H A DSecurityLog.java23 import android.util.EventLog.Event;
120 private Event mEvent;
124 mEvent = Event.fromBytes(data);
/frameworks/base/core/java/android/app/usage/
H A DUsageEvents.java27 * from which to read {@link android.app.usage.UsageEvents.Event} objects.
34 public static final class Event { class in class:UsageEvents
151 private List<Event> mEventsToWrite = null;
197 public UsageEvents(List<Event> events, String[] stringPool) {
205 * {@link #getNextEvent(android.app.usage.UsageEvents.Event)}.
214 * Retrieve the next {@link android.app.usage.UsageEvents.Event} from the collection and put the
217 * @param eventOut The {@link android.app.usage.UsageEvents.Event} object that will receive the
221 public boolean getNextEvent(Event eventOut) {
258 * Writes a single event to the parcel. Modify this when updating {@link Event}.
260 private void writeEventToParcel(Event even
[all...]
/frameworks/base/core/java/android/hardware/location/
H A DActivityRecognitionHardware.java46 * Contains the number of supported Event Types.
62 private static class Event { class in class:ActivityRecognitionHardware
160 private void onActivityChanged(Event[] events) {
170 Event event = events[i];
/frameworks/base/core/java/android/provider/
H A DContactsContract.java4448 * <li>{@link CommonDataKinds.Event Event.CONTENT_ITEM_TYPE}</li>
7030 public static final class Event implements DataColumnsWithJoins, CommonColumns, class in class:ContactsContract.CommonDataKinds
7035 private Event() {} method in class:ContactsContract.CommonDataKinds.Event
/frameworks/base/core/java/android/util/
H A DEventLog.java57 public static final class Event { class in class:EventLog
81 /*package*/ Event(byte[] data) { method in class:EventLog.Event
167 public static Event fromBytes(byte[] data) {
168 return new Event(data);
226 public static native void readEvents(int[] tags, Collection<Event> output)
/frameworks/base/libs/androidfw/
H A DDisplayEventDispatcher.cpp118 DisplayEventReceiver::Event buf[EVENT_BUFFER_SIZE];
123 const DisplayEventReceiver::Event& ev = buf[i];
/frameworks/base/libs/hwui/renderthread/
H A DRenderThread.cpp215 DisplayEventReceiver::Event buf[EVENT_BUFFER_SIZE];
220 const DisplayEventReceiver::Event& ev = buf[i];
/frameworks/base/libs/hwui/tests/common/
H A DTestContext.cpp87 DisplayEventReceiver::Event buf[100];
/frameworks/base/libs/input/
H A DPointerController.cpp477 DisplayEventReceiver::Event buf[EVENT_BUFFER_SIZE];
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/
H A DEventBus.java94 Class<? extends EventBus.Event> eventType;
96 EventHandlerMethod(Method method, Class<? extends EventBus.Event> eventType) {
102 public void invoke(Object target, EventBus.Event event)
118 * Currently, there is a single EventBus that handles {@link EventBus.Event}s for each subscriber
131 * Event method signature:<ul>
135 * <li>Methods must take one parameter, of class type deriving from {@link EventBus.Event}
139 * Interprocess-Event method signature:<ul>
194 * <li>setSubscriberEventHandlerPriority(subscriber, Class<Event>, priority)
200 * <li>sendForResult&lt;ReturnType&gt;(Event) to send and get a result, but who will send the
215 public static class Event implement class in class:EventBus
224 protected Event() {} method in class:EventBus.Event
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/activity/
H A DAppTransitionFinishedEvent.java24 public class AppTransitionFinishedEvent extends EventBus.Event {
H A DCancelEnterRecentsWindowAnimationEvent.java25 public class CancelEnterRecentsWindowAnimationEvent extends EventBus.Event {
H A DDebugFlagsChangedEvent.java24 public class DebugFlagsChangedEvent extends EventBus.Event {
H A DDockedFirstAnimationFrameEvent.java19 import com.android.systemui.recents.events.EventBus.Event;
24 public class DockedFirstAnimationFrameEvent extends Event {
H A DDockedTopTaskEvent.java27 public class DockedTopTaskEvent extends EventBus.Event {
H A DEnterRecentsWindowLastAnimationFrameEvent.java21 public class EnterRecentsWindowLastAnimationFrameEvent extends EventBus.Event {
H A DExitRecentsWindowFirstAnimationFrameEvent.java22 * Event sent when the exit animation is started.
27 public class ExitRecentsWindowFirstAnimationFrameEvent extends EventBus.Event {
H A DHideRecentsEvent.java25 public class HideRecentsEvent extends EventBus.Event {

Completed in 725 milliseconds

1234