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

  /frameworks/base/services/input/
InputReader.cpp 305 void InputReader::processEventsLocked(const RawEvent* rawEvents, size_t count) {
306 for (const RawEvent* rawEvent = rawEvents; count;) {
307 int32_t type = rawEvent->type;
310 int32_t deviceId = rawEvent->deviceId;
312 if (rawEvent[batchSize].type >= EventHubInterface::FIRST_SYNTHETIC_EVENT
313 || rawEvent[batchSize].deviceId != deviceId) {
321 processEventsForDeviceLocked(deviceId, rawEvent, batchSize);
323 switch (rawEvent->type) {
325 addDeviceLocked(rawEvent->when, rawEvent->deviceId)
    [all...]
InputReader.h 374 RawEvent mEventBuffer[EVENT_BUFFER_SIZE];
379 void processEventsLocked(const RawEvent* rawEvents, size_t count);
383 void processEventsForDeviceLocked(int32_t deviceId, const RawEvent* rawEvents, size_t count);
451 void process(const RawEvent* rawEvents, size_t count);
509 void process(const RawEvent* rawEvent);
534 void process(const RawEvent* rawEvent);
556 void process(const RawEvent* rawEvent);
    [all...]
  /frameworks/base/media/libmedia/
JetPlayer.cpp 327 EAS_U32 rawEvent;
328 while (JET_GetEvent(mEasData, &rawEvent, NULL)) {
331 rawEvent,
  /frameworks/base/services/input/tests/
InputReader_test.cpp 297 List<RawEvent> mEvents;
405 RawEvent event;
500 virtual size_t getEvents(int timeoutMillis, RawEvent* buffer, size_t bufferSize) {
706 RawEvent mLastEvent;
742 void assertProcessWasCalled(RawEvent* outLastEvent = NULL) {
789 virtual void process(const RawEvent* rawEvent) {
790 mLastEvent = *rawEvent;
    [all...]

Completed in 182 milliseconds