Home
last modified time | relevance | path

Searched refs:g_timeout (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/Process/gdb-remote/
H A DGDBRemoteClientBaseTest.cpp59 static std::chrono::seconds g_timeout; member in __anon7c812b550111::GDBRemoteClientBaseTest
67 "c", g_timeout, in SendCPacket()
78 std::chrono::seconds GDBRemoteClientBaseTest::g_timeout(10); member in __anon7c812b550111::GDBRemoteClientBaseTest
111 ASSERT_FALSE(client.SendAsyncSignal(0x47, g_timeout)); in TEST_F()
121 return client.SendAsyncSignal(0x47, g_timeout); in TEST_F()
156 g_timeout); in TEST_F()
185 ASSERT_FALSE(client.Interrupt(g_timeout)); in TEST_F()
195 std::launch::async, [&] { return client.Interrupt(g_timeout); }); in TEST_F()
219 std::launch::async, [&] { return client.Interrupt(g_timeout); }); in TEST_F()
242 ASSERT_FALSE(client.Interrupt(g_timeout)); in TEST_F()
[all …]
/llvm-project-15.0.7/lldb/test/API/functionalities/thread/exit_during_expression/
H A Dmain.c6 static unsigned int g_timeout = 100000; variable
14 int result = usleep(g_timeout); in function_to_call()
37 usleep(g_timeout * 4); // Make sure in the "run all threads" case in main()
H A DTestExitDuringExpression.py68 g_timeout = value_list.GetFirstValueByName("g_timeout")
69 self.assertTrue(g_timeout.IsValid(), "Found g_timeout")
72 timeout_value = g_timeout.GetValueAsUnsigned(error)