Searched refs:thread (Results 1 – 9 of 9) sorted by relevance
/tools/test/connectivity/acts/tests/google/ble/beacon_tests/ |
D | BeaconSwarmTest.py | 123 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/ |
D | ThroughputTest.py | 186 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/ |
D | Alarm.java | 82 for (Thread thread : mInterruptThreads) { in run() 83 thread.interrupt(); in run()
|
D | IRunUtil.java | 277 public void setInterruptibleInFuture(Thread thread, long timeMs); in setInterruptibleInFuture() argument 286 public void interrupt(Thread thread, String message); in interrupt() argument
|
D | RunUtil.java | 479 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/ |
D | CoexBaseTest.py | 250 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/ |
D | bt_test_utils.py | 226 thread = threading.Thread(target=factory_reset_bluetooth, args=([[a]])) 227 threads.append(thread) 228 thread.start()
|
/tools/tradefederation/core/src/com/android/tradefed/command/ |
D | Console.java | 1028 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/ |
D | cmd_input.py | 600 thread = threading.Thread( 602 threads.append(thread) 603 thread.start()
|