• Home
  • Raw
  • Download

Lines Matching refs:completed

229 void WaitForRemote(pid_t pid, uint64_t addr, bool leave_attached, bool* completed) {  in WaitForRemote()  argument
230 *completed = false; in WaitForRemote()
243 *completed = true; in WaitForRemote()
245 if (!*completed || !leave_attached) { in WaitForRemote()
248 if (*completed) { in WaitForRemote()
267 bool completed; in TEST_F() local
268 WaitForRemote(pid, reinterpret_cast<uint64_t>(&g_ready_for_remote), true, &completed); in TEST_F()
269 ASSERT_TRUE(completed) << "Timed out waiting for remote process to be ready."; in TEST_F()
291 bool completed; in TEST_F() local
292 WaitForRemote(pid, reinterpret_cast<uint64_t>(&g_ready_for_remote), true, &completed); in TEST_F()
293 ASSERT_TRUE(completed) << "Timed out waiting for remote process to be ready."; in TEST_F()
318 bool completed; in RemoteCheckForLeaks() local
319 WaitForRemote(pid, reinterpret_cast<uint64_t>(&g_ready_for_remote), true, &completed); in RemoteCheckForLeaks()
320 ASSERT_TRUE(completed) << "Timed out waiting for remote process to be ready."; in RemoteCheckForLeaks()
419 bool completed; in RemoteThroughSignal() local
421 WaitForRemote(pid, reinterpret_cast<uint64_t>(&g_ready_for_remote), false, &completed); in RemoteThroughSignal()
422 ASSERT_TRUE(completed) << "Timed out waiting for remote process to be ready."; in RemoteThroughSignal()
425 WaitForRemote(pid, reinterpret_cast<uint64_t>(&g_signal_ready_for_remote), true, &completed); in RemoteThroughSignal()
426 ASSERT_TRUE(completed) << "Timed out waiting for remote process to be in signal handler."; in RemoteThroughSignal()