HomeSort by relevance Sort by last modified time
    Searched refs:EVENT_BUFFER_SIZE (Results 1 - 7 of 7) sorted by null

  /frameworks/base/libs/androidfw/
DisplayEventDispatcher.cpp 34 static const size_t EVENT_BUFFER_SIZE = 100;
119 DisplayEventReceiver::Event buf[EVENT_BUFFER_SIZE];
121 while ((n = mReceiver.getEvents(buf, EVENT_BUFFER_SIZE)) > 0) {
  /frameworks/base/services/core/java/com/android/server/job/
JobPackageTracker.java 39 private static final int EVENT_BUFFER_SIZE = 100;
50 private final RingBufferIndices mEventIndices = new RingBufferIndices(EVENT_BUFFER_SIZE);
51 private final int[] mEventCmds = new int[EVENT_BUFFER_SIZE];
52 private final long[] mEventTimes = new long[EVENT_BUFFER_SIZE];
53 private final int[] mEventUids = new int[EVENT_BUFFER_SIZE];
54 private final String[] mEventTags = new String[EVENT_BUFFER_SIZE];
55 private final int[] mEventJobIds = new int[EVENT_BUFFER_SIZE];
  /frameworks/base/libs/hwui/renderthread/
RenderThread.cpp 47 static const size_t EVENT_BUFFER_SIZE = 100;
296 DisplayEventReceiver::Event buf[EVENT_BUFFER_SIZE];
299 while ((n = receiver->getEvents(buf, EVENT_BUFFER_SIZE)) > 0) {
  /frameworks/base/libs/input/
PointerController.cpp 75 static const int EVENT_BUFFER_SIZE = 100;
501 DisplayEventReceiver::Event buf[EVENT_BUFFER_SIZE];
502 while ((n = mDisplayEventReceiver.getEvents(buf, EVENT_BUFFER_SIZE)) > 0) {
  /frameworks/base/services/core/java/com/android/server/
DeviceIdleController.java 113 private static final int EVENT_BUFFER_SIZE = 100;
319 private final int[] mEventCmds = new int[EVENT_BUFFER_SIZE];
320 private final long[] mEventTimes = new long[EVENT_BUFFER_SIZE];
324 System.arraycopy(mEventCmds, 0, mEventCmds, 1, EVENT_BUFFER_SIZE - 1);
325 System.arraycopy(mEventTimes, 0, mEventTimes, 1, EVENT_BUFFER_SIZE - 1);
    [all...]
  /frameworks/native/services/inputflinger/
InputReader.h 482 static const int EVENT_BUFFER_SIZE = 256;
483 RawEvent mEventBuffer[EVENT_BUFFER_SIZE];
    [all...]
InputReader.cpp 376 size_t count = mEventHub->getEvents(timeoutMillis, mEventBuffer, EVENT_BUFFER_SIZE);
    [all...]

Completed in 1003 milliseconds