Searched refs:thread (Results 1 – 13 of 13) sorted by relevance
/test/mlts/benchmark/native/ |
D | multi_process_test.cpp | 277 std::thread killer = std::thread([killAfter]() { in main() 286 std::vector<std::thread> threads; in main() 289 threads.push_back(std::thread([&]() { in main() 295 [](std::thread& t) { t.join(); }); in main()
|
/test/vts/harnesses/tradefed/src/com/android/tradefed/util/ |
D | ProcessHelper.java | 383 private static boolean joinThread(Thread thread, long timeoutMsec) { in joinThread() argument 385 thread.join(timeoutMsec); in joinThread() 389 if (thread.isAlive()) { in joinThread() 390 CLog.e("Failed to join %s.", thread.getName()); in joinThread()
|
/test/vts-testcase/performance/binder_throughput_test/ |
D | BinderThroughputBenchmark.py | 80 for thread in _THREAD_LIST: 81 result = self.RunBenchmark(bits, thread) 82 labels.append("%s_thread" % thread)
|
/test/vts-testcase/performance/hwbinder_throughput_test/ |
D | HwBinderThroughputBenchmark.py | 82 for thread in _THREAD_LIST: 83 result = self.RunBenchmark(bits, thread) 84 labels.append("%s_thread" % thread)
|
/test/framework/harnesses/host_controller/command_processor/ |
D | command_config_local.py | 71 thread = threading.currentThread() 72 while getattr(thread, 'keep_running', True):
|
D | command_build.py | 134 thread = threading.currentThread() 135 while getattr(thread, 'keep_running', True):
|
D | command_device.py | 220 thread = threading.currentThread() 221 while getattr(thread, 'keep_running', True):
|
D | command_config.py | 186 thread = threading.currentThread() 187 while getattr(thread, 'keep_running', True):
|
/test/vts/runners/host/ |
D | utils.py | 34 import thread 36 import _thread as thread namespace 388 thread.interrupt_main()
|
/test/vts-testcase/kernel/api/bpf_native_test/ |
D | BpfTest.cpp | 92 std::thread tds[NUM_SOCKETS]; 158 tds[i] = std::thread(workerThread, prog_fd, &stop); in SetUp()
|
/test/framework/harnesses/host_controller/vti_interface/ |
D | vti_endpoint_client.py | 325 thread = threading.currentThread() 326 while getattr(thread, 'keep_running', True):
|
/test/vts-testcase/hal/treble/vintf/ |
D | VtsTrebleVintfTestBase.cpp | 161 std::thread(std::move(task)).detach(); in GetHalService()
|
/test/framework/harnesses/host_controller/ |
D | console.py | 798 thread = threading.currentThread() 799 while getattr(thread, "keep_running", True):
|