HomeSort by relevance Sort by last modified time
    Searched refs:threading (Results 551 - 575 of 913) sorted by null

<<21222324252627282930>>

  /external/autotest/client/site_tests/network_ProxyResolver/
network_ProxyResolver.py 13 import threading
84 self._thread = threading.Thread(target=self._server.serve_forever)
  /external/autotest/client/site_tests/power_Thermal/
power_Thermal.py 5 import glob, logging, os, tempfile, threading, time
107 new_thread = threading.Thread(target=self._cpu_heater)
  /external/autotest/server/site_tests/platform_ExternalUsbPeripherals/
platform_ExternalUsbPeripherals.py 5 import logging, threading, time
109 thread = threading.Thread(target=self.suspend_for_time)
  /external/autotest/site_utils/lxc/container_pool/
service_unittest.py 12 import threading
217 thread = threading.Thread(name='service', target=svc.start)
  /external/googletest/googletest/docs/
Pkgconfig.md 42 that all libraries have been compiled with threading enabled. In addition,
  /external/llvm/utils/lit/lit/
util.py 9 import threading
213 timerObject = threading.Timer(timeout, killProcess)
  /external/python/cpython2/Lib/test/
test_ftplib.py 21 threading = test_support.import_module('threading') variable
213 class DummyFTPServer(asyncore.dispatcher, threading.Thread):
218 threading.Thread.__init__(self)
224 self.active_lock = threading.Lock()
230 self.__flag = threading.Event()
231 threading.Thread.start(self)
763 self.evt = threading.Event()
767 threading.Thread(target=self.server, args=(self.evt,self.sock)).start()
test_logging.py 47 import threading
49 threading = None variable
900 self.finished = threading.Event()
914 @unittest.skipUnless(threading, 'Threading required for this test.')
926 threading.Thread(target=self.tcpserver.serve_until_stopped)]
    [all...]
  /external/python/cpython2/Tools/webchecker/
wsgui.py 12 import threading
168 t = threading.Thread(target=self.sucker.run1, args=(url,))
  /external/python/cpython3/Lib/multiprocessing/
context.py 3 import threading
344 _tls = threading.local()
heap.py 15 import threading
104 self._lock = threading.Lock()
  /external/python/cpython3/Lib/test/
test_contextlib.py 10 import threading
12 threading = None variable
245 @unittest.skipUnless(threading, 'Threading required for this test.')
260 lock = threading.Lock()
264 lock = threading.RLock()
268 lock = threading.Condition()
274 lock = threading.Semaphore()
284 lock = threading.BoundedSemaphore()
test_logging.py 50 import threading
52 # require threading
60 threading = None variable
615 @unittest.skipUnless(threading, 'Threading required for this test.')
636 remover = threading.Thread(target=remove_loop, args=(fn, del_count))
695 if threading:
741 self._thread = t = threading.Thread(target=self.serve_forever,
795 self.ready = threading.Event()
801 self._thread = t = threading.Thread(target=self.serve_forever
    [all...]
test_concurrent_futures.py 7 # import threading after _multiprocessing to raise a more relevant error
10 test.support.import_module('threading')
16 import threading
324 event = threading.Event()
442 my_object_collected = threading.Event()
710 t = threading.Thread(target=notification)
723 t = threading.Thread(target=notification)
751 t = threading.Thread(target=notification)
test_sys.py 20 import threading
22 threading = None variable
176 @unittest.skipUnless(threading, 'Threading required for this test.')
367 import threading
373 entered_g = threading.Event()
374 leave_g = threading.Event()
381 thread_info.append(threading.get_ident())
385 t = threading.Thread(target=f123)
397 main_id = threading.get_ident(
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_logging.py 49 import threading
51 threading = None variable
902 self.finished = threading.Event()
916 @unittest.skipUnless(threading, 'Threading required for this test.')
928 threading.Thread(target=self.tcpserver.serve_until_stopped)]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_logging.py 49 import threading
51 threading = None variable
902 self.finished = threading.Event()
916 @unittest.skipUnless(threading, 'Threading required for this test.')
928 threading.Thread(target=self.tcpserver.serve_until_stopped)]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_logging.py 49 import threading
51 threading = None variable
902 self.finished = threading.Event()
916 @unittest.skipUnless(threading, 'Threading required for this test.')
928 threading.Thread(target=self.tcpserver.serve_until_stopped)]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_logging.py 49 import threading
51 threading = None variable
902 self.finished = threading.Event()
916 @unittest.skipUnless(threading, 'Threading required for this test.')
928 threading.Thread(target=self.tcpserver.serve_until_stopped)]
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/sl4a_lib/
event_dispatcher.py 20 import threading
64 self._lock = threading.RLock()
387 be a threading.Event object.
  /tools/test/connectivity/acts/framework/acts/controllers/utils_lib/ssh/
connection.py 20 import threading
81 self._lock = threading.Lock()
  /tools/test/connectivity/acts/tests/google/wifi/
WifiTetheringPowerTest.py 18 import threading
134 t = threading.Thread(target = self._start_traffic_on_device,
  /external/toolchain-utils/crosperf/
machine_manager.py 16 import threading
200 self._lock = threading.RLock()
203 self.image_lock = threading.Lock()
420 m.test_run = threading.current_thread()
425 m.test_run = threading.current_thread()
440 m.test_run = threading.current_thread()
  /external/python/cpython3/Lib/logging/
__init__.py 41 import threading
43 threading = None variable
67 # If you don't want threading information in the log, set this to zero
213 if threading:
214 _lock = threading.RLock()
298 if logThreads and threading:
299 self.thread = threading.get_ident()
300 self.threadName = threading.current_thread().name
802 if threading:
803 self.lock = threading.RLock(
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_asyncore.py 16 import threading
18 threading = None variable
352 @unittest.skipUnless(threading, 'Threading required for this test.')
355 evt = threading.Event()
362 t = threading.Thread(target=capture_server, args=args)

Completed in 1213 milliseconds

<<21222324252627282930>>