Searched refs:probablyHasInput (Results 1 – 13 of 13) sorted by relevance
116 ASSERT_FALSE(receiverChannel->probablyHasInput()); in TEST_F()131 hasInput = receiverChannel->probablyHasInput(); in TEST_F()146 EXPECT_FALSE(receiverChannel->probablyHasInput()) in TEST_F()
362 if (!mConsumer->probablyHasInput()) { in onBatchedInputEventPending()393 mProbablyHasInputResponses.push(mConsumer->probablyHasInput()); in handleMessage()474 std::optional<bool> probablyHasInput = mProbablyHasInputResponses.popWithTimeout(TIMEOUT); in publishAndConsumeKeyEvent() local475 ASSERT_TRUE(probablyHasInput.has_value()); in publishAndConsumeKeyEvent()476 ASSERT_FALSE(probablyHasInput.value()) << "no events should be waiting after being consumed"; in publishAndConsumeKeyEvent()554 ASSERT_TRUE(mConsumer->probablyHasInput()) in publishAndConsumeBatchedMotionMove()
217 hasInput = inputConsumer.probablyHasInput(); in waitUntilInputAvailable()293 EXPECT_FALSE(mConsumer->probablyHasInput()) in publishAndConsumeKeyEvent()374 EXPECT_TRUE(mConsumer->probablyHasInput()) in publishAndConsumeBatchedMotionMove()
95 bool probablyHasInput();180 bool NativeInputEventReceiver::probablyHasInput() { in probablyHasInput() function in android::NativeInputEventReceiver181 return mInputConsumer.probablyHasInput(); in probablyHasInput()571 return receiver->probablyHasInput(); in nativeProbablyHasInput()
92 bool probablyHasInput() const;
104 bool probablyHasInput() const;
285 bool probablyHasInput() const;
99 public boolean probablyHasInput() { in probablyHasInput() method in InputEventReceiver
11098 public boolean probablyHasInput() { in probablyHasInput() method in ViewRootImpl.TrackballAxis11102 return mInputEventReceiver.probablyHasInput(); in probablyHasInput()
23473 public boolean probablyHasInput() { in probablyHasInput() method23478 return viewRootImpl.probablyHasInput(); in probablyHasInput()
277 bool InputConsumerNoResampling::probablyHasInput() const { in probablyHasInput() function in android::InputConsumerNoResampling281 return (!mBatches.empty()) || mChannel->probablyHasInput(); in probablyHasInput()
813 bool InputConsumer::probablyHasInput() const { in probablyHasInput() function in android::InputConsumer814 return hasPendingBatch() || mChannel->probablyHasInput(); in probablyHasInput()
470 bool InputChannel::probablyHasInput() const { in probablyHasInput() function in android::InputChannel