Lines Matching refs:expectedTimestamp

91     void expectInterceptCallReceived(nsecs_t expectedTimestamp);
94 nsecs_t expectedTimestamp, unsigned expectedCount);
95 void expectVsyncEventReceivedByConnection(nsecs_t expectedTimestamp, unsigned expectedCount);
101 void expectThrottleVsyncReceived(nsecs_t expectedTimestamp, uid_t);
212 void EventThreadTest::expectInterceptCallReceived(nsecs_t expectedTimestamp) { in expectInterceptCallReceived() argument
215 EXPECT_EQ(expectedTimestamp, std::get<0>(args.value())); in expectInterceptCallReceived()
218 void EventThreadTest::expectThrottleVsyncReceived(nsecs_t expectedTimestamp, uid_t uid) { in expectThrottleVsyncReceived() argument
221 EXPECT_EQ(expectedTimestamp, std::get<0>(args.value())); in expectThrottleVsyncReceived()
227 nsecs_t expectedTimestamp, unsigned expectedCount) { in expectVsyncEventReceivedByConnection() argument
230 << expectedTimestamp; in expectVsyncEventReceivedByConnection()
233 << name << " did not get the correct event for timestamp " << expectedTimestamp; in expectVsyncEventReceivedByConnection()
234 EXPECT_EQ(expectedTimestamp, event.header.timestamp) in expectVsyncEventReceivedByConnection()
235 << name << " did not get the expected timestamp for timestamp " << expectedTimestamp; in expectVsyncEventReceivedByConnection()
237 << name << " did not get the expected count for timestamp " << expectedTimestamp; in expectVsyncEventReceivedByConnection()
240 void EventThreadTest::expectVsyncEventReceivedByConnection(nsecs_t expectedTimestamp, in expectVsyncEventReceivedByConnection() argument
243 mConnectionEventCallRecorder, expectedTimestamp, in expectVsyncEventReceivedByConnection()