Searched refs:getEventThreadConnectionCount (Results 1 – 8 of 8) sorted by relevance
52 MOCK_METHOD(size_t, getEventThreadConnectionCount, (), (override));
135 virtual size_t getEventThreadConnectionCount() = 0;175 size_t getEventThreadConnectionCount() override;
418 size_t Scheduler::getEventThreadConnectionCount(ConnectionHandle handle) { in getEventThreadConnectionCount() function in android::scheduler::Scheduler421 return mConnections[handle].thread->getEventThreadConnectionCount(); in getEventThreadConnectionCount()
285 size_t getEventThreadConnectionCount(ConnectionHandle handle);
430 size_t EventThread::getEventThreadConnectionCount() { in getEventThreadConnectionCount() function in android::impl::EventThread
640 EXPECT_EQ(2, mThread->getEventThreadConnectionCount()); in TEST_F()644 EXPECT_EQ(3, mThread->getEventThreadConnectionCount()); in TEST_F()649 EXPECT_EQ(4, mThread->getEventThreadConnectionCount()); in TEST_F()659 EXPECT_EQ(3, mThread->getEventThreadConnectionCount()); in TEST_F()
154 EXPECT_CALL(*mEventThread, getEventThreadConnectionCount()).WillOnce(Return(kEventConnections)); in TEST_F()155 EXPECT_EQ(kEventConnections, mScheduler->getEventThreadConnectionCount(mConnectionHandle)); in TEST_F()
2981 const size_t sfConnections = mScheduler->getEventThreadConnectionCount(mSfConnectionHandle); in postComposition()2982 const size_t appConnections = mScheduler->getEventThreadConnectionCount(mAppConnectionHandle); in postComposition()