Lines Matching refs:count_down_
43 count_down_(0) { in PerformanceChannelListener()
56 DCHECK_EQ(0, count_down_); in SetTestParams()
60 count_down_ = msg_count_; in SetTestParams()
84 for (; count_down_ > 0; --count_down_) { in OnHello()
100 CHECK(count_down_ > 0); in OnPing()
101 count_down_--; in OnPing()
102 if (count_down_ == 0) { in OnPing()
120 int count_down_; member in IPC::__anon422127d70111::PerformanceChannelListener
278 MojoInterfacePerfTest() : message_count_(0), count_down_(0) {} in MojoInterfacePerfTest()
293 message_count_ = count_down_ = params[i].message_count(); in RunPingPongServer()
314 CHECK(count_down_ > 0); in OnPong()
315 count_down_--; in OnPong()
316 if (count_down_ == 0) { in OnPong()
324 for (int i = 0; i < count_down_; ++i) { in OnPong()
355 int count_down_; member in IPC::__anon422127d70111::MojoInterfacePerfTest
436 rounds_ = count_down_ = params[i].rounds(); in RunInterfacePassingServer()
493 CHECK_GT(count_down_, 0u); in OnGetReceiverCallback()
494 count_down_--; in OnGetReceiverCallback()
496 if (count_down_ == 0) { in OnGetReceiverCallback()
522 size_t count_down_ = 0; member in IPC::__anon422127d70111::MojoInterfacePassingPerfTest
710 : client_thread_("PingPongClient"), message_count_(0), count_down_(0) {} in CallbackPerfTest()
723 message_count_ = count_down_ = params[i].message_count(); in RunMultiThreadPingPongServer()
746 CHECK(count_down_ > 0); in OnPong()
747 count_down_--; in OnPong()
748 if (count_down_ == 0) { in OnPong()
799 message_count_ = count_down_ = params[i].message_count(); in RunSingleThreadPostTaskPingPongServer()
822 CHECK(count_down_ > 0); in SingleThreadPongPostTask()
823 count_down_--; in SingleThreadPongPostTask()
824 if (count_down_ == 0) { in SingleThreadPongPostTask()
840 int count_down_; member in IPC::__anon422127d70111::CallbackPerfTest