Home
last modified time | relevance | path

Searched refs:hasPendingBatch (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/jni/
Dandroid_view_InputEventReceiver.md10 4. If a batched input event is available, `InputConsumer::hasPendingBatch` returns true. No event i…
25 …tEventReceiver`) is responsible for checking whether `InputConsumer::hasPendingBatch` is set to tr…
Dandroid_view_InputEventReceiver.cpp346 if (!skipCallbacks && !mBatchedInputEventPending && mInputConsumer.hasPendingBatch()) { in consumeEvents()
/frameworks/native/include/input/
DInputConsumer.h90 bool hasPendingBatch() const;
/frameworks/native/libs/input/
DInputConsumer.cpp799 bool InputConsumer::hasPendingBatch() const { in hasPendingBatch() function in android::InputConsumer
814 return hasPendingBatch() || mChannel->probablyHasInput(); in probablyHasInput()
/frameworks/native/libs/input/tests/
DInputPublisherAndConsumer_test.cpp373 ASSERT_TRUE(mConsumer->hasPendingBatch()) << "consume should have created a batch"; in publishAndConsumeBatchedMotionMove()