Home
last modified time | relevance | path

Searched refs:thread (Results 1 – 13 of 13) sorted by relevance

/test/mlts/benchmark/native/
Dmulti_process_test.cpp277 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/
DProcessHelper.java383 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/
DBinderThroughputBenchmark.py80 for thread in _THREAD_LIST:
81 result = self.RunBenchmark(bits, thread)
82 labels.append("%s_thread" % thread)
/test/vts-testcase/performance/hwbinder_throughput_test/
DHwBinderThroughputBenchmark.py82 for thread in _THREAD_LIST:
83 result = self.RunBenchmark(bits, thread)
84 labels.append("%s_thread" % thread)
/test/framework/harnesses/host_controller/command_processor/
Dcommand_config_local.py71 thread = threading.currentThread()
72 while getattr(thread, 'keep_running', True):
Dcommand_build.py134 thread = threading.currentThread()
135 while getattr(thread, 'keep_running', True):
Dcommand_device.py220 thread = threading.currentThread()
221 while getattr(thread, 'keep_running', True):
Dcommand_config.py186 thread = threading.currentThread()
187 while getattr(thread, 'keep_running', True):
/test/vts/runners/host/
Dutils.py34 import thread
36 import _thread as thread namespace
388 thread.interrupt_main()
/test/vts-testcase/kernel/api/bpf_native_test/
DBpfTest.cpp92 std::thread tds[NUM_SOCKETS];
158 tds[i] = std::thread(workerThread, prog_fd, &stop); in SetUp()
/test/framework/harnesses/host_controller/vti_interface/
Dvti_endpoint_client.py325 thread = threading.currentThread()
326 while getattr(thread, 'keep_running', True):
/test/vts-testcase/hal/treble/vintf/
DVtsTrebleVintfTestBase.cpp161 std::thread(std::move(task)).detach(); in GetHalService()
/test/framework/harnesses/host_controller/
Dconsole.py798 thread = threading.currentThread()
799 while getattr(thread, "keep_running", True):