Searched refs:usec (Results 1 – 11 of 11) sorted by relevance
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_on_lambda_capture/ |
| H A D | main.cpp | 9 void usleep_helper(uint32_t usec) { in usleep_helper() 10 [this, &usec] { in usleep_helper() 13 std::chrono::duration<unsigned int, std::milli>(offset + usec)); in usleep_helper()
|
| /llvm-project-15.0.7/lldb/test/Shell/ExecControl/StopHook/Inputs/ |
| H A D | stop-hook-threads.cpp | 40 int usec = g_distribution(g_random_engine); in thread_func() local 41 printf ("%s (thread = %u) doing a usleep (%d)...\n", __FUNCTION__, thread_index, usec); in thread_func() 42 … std::this_thread::sleep_for(std::chrono::microseconds{usec}); // Set break point at this line in thread_func()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/watchpoint/watchlocation/ |
| H A D | main.cpp | 59 int usec = g_distribution(g_random_engine); in thread_func() local 60 printf ("%s (thread = %u) doing a usleep (%d)...\n", __FUNCTION__, thread_index, usec); in thread_func() 61 std::this_thread::sleep_for(std::chrono::microseconds{usec}); in thread_func()
|
| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/hello_watchlocation/ |
| H A D | main.cpp | 59 int usec = g_distribution(g_random_engine); in thread_func() local 60 printf ("%s (thread = %u) doing a usleep (%d)...\n", __FUNCTION__, thread_index, usec); in thread_func() 61 std::this_thread::sleep_for(std::chrono::microseconds{usec}); in thread_func()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/lldbutil/iter/ |
| H A D | main.cpp | 60 int usec = distribution(generator); in thread_func() local 61 printf ("%s (thread = %u) doing a usleep (%d)...\n", __FUNCTION__, thread_index, usec); in thread_func() 63 std::chrono::microseconds duration(usec); in thread_func()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/two_hits_one_actual/ |
| H A D | main.cpp | 4 void usleep_helper(unsigned int usec) { in usleep_helper() argument 6 std::this_thread::sleep_for(std::chrono::duration<unsigned int, std::milli>(usec)); in usleep_helper()
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/ |
| H A D | DNBTimer.h | 63 void GetTime(uint64_t &sec, uint32_t &usec) const { in GetTime() argument 66 usec = m_timeval.tv_usec; in GetTime()
|
| H A D | ChangeLog | 154 seconds (usec) to wait between polls (defaults to 1000). The new
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | CommunicationKDP.h | 89 uint32_t usec);
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/ |
| H A D | tsan_interceptors_posix.cpp | 352 TSAN_INTERCEPTOR(int, usleep, long_t usec) { in TSAN_INTERCEPTOR() argument 353 SCOPED_TSAN_INTERCEPTOR(usleep, usec); in TSAN_INTERCEPTOR() 354 int res = BLOCK_REAL(usleep)(usec); in TSAN_INTERCEPTOR()
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_interceptors_posix.cpp | 357 TSAN_INTERCEPTOR(int, usleep, long_t usec) { in TSAN_INTERCEPTOR() argument 358 SCOPED_TSAN_INTERCEPTOR(usleep, usec); in TSAN_INTERCEPTOR() 359 int res = BLOCK_REAL(usleep)(usec); in TSAN_INTERCEPTOR()
|