Home
last modified time | relevance | path

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

/tools/test/connectivity/acts/tests/google/ble/beacon_tests/
DBeaconSwarmTest.py123 thread = threading.Thread(target=self._start_advertisements_thread,
125 threads.append(thread)
126 thread.start()
152 thread = threading.Thread(
155 threads.append(thread)
156 thread.start()
327 thread = threading.Thread(
330 thread.start()
/tools/test/connectivity/acts/tests/google/wifi/aware/performance/
DThroughputTest.py186 for thread in threads:
187 thread.start()
189 for thread in threads:
190 thread.join()
341 for thread in threads:
342 thread.start()
344 for thread in threads:
345 thread.join()
/tools/tradefederation/core/src/com/android/tradefed/util/
DAlarm.java82 for (Thread thread : mInterruptThreads) { in run()
83 thread.interrupt(); in run()
DIRunUtil.java277 public void setInterruptibleInFuture(Thread thread, long timeMs); in setInterruptibleInFuture() argument
286 public void interrupt(Thread thread, String message); in interrupt() argument
DRunUtil.java479 public void setInterruptibleInFuture(Thread thread, final long timeMs) { in setInterruptibleInFuture() argument
488 mWatchdogInterrupt.get().schedule(new InterruptTask(thread), timeMs); in setInterruptibleInFuture()
498 public synchronized void interrupt(Thread thread, String message) { in interrupt() argument
502 mInterruptThreads.put(thread.getId(), message); in interrupt()
/tools/test/connectivity/acts/framework/acts/test_utils/coex/
DCoexBaseTest.py250 self.thread = threading.Thread(target=function)
251 self.thread_list.append(self.thread)
252 self.thread.start()
/tools/test/connectivity/acts/framework/acts/test_utils/bt/
Dbt_test_utils.py226 thread = threading.Thread(target=factory_reset_bluetooth, args=([[a]]))
227 threads.append(thread)
228 thread.start()
/tools/tradefederation/core/src/com/android/tradefed/command/
DConsole.java1028 private void dumpThreadStack(Thread thread, StackTraceElement[] trace, PrintStream ps) { in dumpThreadStack() argument
1029 printLine(String.format("%s", thread), ps); in dumpThreadStack()
/tools/test/connectivity/acts/tests/google/bt/pts/
Dcmd_input.py600 thread = threading.Thread(
602 threads.append(thread)
603 thread.start()