Home
last modified time | relevance | path

Searched refs:getEventThreadConnectionCount (Results 1 – 8 of 8) sorted by relevance

/frameworks/native/services/surfaceflinger/tests/unittests/mock/
DMockEventThread.h52 MOCK_METHOD(size_t, getEventThreadConnectionCount, (), (override));
/frameworks/native/services/surfaceflinger/Scheduler/
DEventThread.h135 virtual size_t getEventThreadConnectionCount() = 0;
175 size_t getEventThreadConnectionCount() override;
DScheduler.cpp418 size_t Scheduler::getEventThreadConnectionCount(ConnectionHandle handle) { in getEventThreadConnectionCount() function in android::scheduler::Scheduler
421 return mConnections[handle].thread->getEventThreadConnectionCount(); in getEventThreadConnectionCount()
DScheduler.h285 size_t getEventThreadConnectionCount(ConnectionHandle handle);
DEventThread.cpp430 size_t EventThread::getEventThreadConnectionCount() { in getEventThreadConnectionCount() function in android::impl::EventThread
/frameworks/native/services/surfaceflinger/tests/unittests/
DEventThreadTest.cpp640 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()
DSchedulerTest.cpp154 EXPECT_CALL(*mEventThread, getEventThreadConnectionCount()).WillOnce(Return(kEventConnections)); in TEST_F()
155 EXPECT_EQ(kEventConnections, mScheduler->getEventThreadConnectionCount(mConnectionHandle)); in TEST_F()
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp2981 const size_t sfConnections = mScheduler->getEventThreadConnectionCount(mSfConnectionHandle); in postComposition()
2982 const size_t appConnections = mScheduler->getEventThreadConnectionCount(mAppConnectionHandle); in postComposition()