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

12 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 45 import threading
53 from threading import Lock, RLock, Semaphore, BoundedSemaphore
54 from threading import Event
61 class DummyProcess(threading.Thread):
64 threading.Thread.__init__(self, group, target, name, args, kwargs)
75 threading.Thread.start(self)
88 class Condition(threading._Condition):
89 notify_all = threading._Condition.notify_all.im_func
96 current_process = threading.current_thread
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_capi.py 11 import threading
13 threading = None variable
16 @unittest.skipUnless(threading, 'Threading required for this test.')
63 context.lock = threading.Lock()
64 context.event = threading.Event()
67 t = threading.Thread(target=self.pendingcalls_thread, args = (context,))
129 if threading:
133 t=threading.Thread(target=TestThreadState)
test_fork1.py 12 threading = import_module('threading') variable
32 import_started = threading.Event()
43 t = threading.Thread(target=importer)
test_threadedtempfile.py 22 threading = import_module('threading') variable
27 startEvent = threading.Event()
29 class TempFileGreedy(threading.Thread):
  /external/autotest/server/cros/
lockfile.py 55 import threading
59 # Work with PEP8 and non-PEP8 versions of threading module.
60 if not hasattr(threading, "current_thread"):
61 threading.current_thread = threading.currentThread
62 if not hasattr(threading.Thread, "get_name"):
63 threading.Thread.get_name = threading.Thread.getName
141 name = threading.current_thread().get_name()
  /external/autotest/site_utils/lxc/container_pool/
unittest_client.py 7 import threading
23 class _ClientFactory(threading.Thread):
  /external/mesa3d/scons/
fixes.py 6 import threading
9 spawn_lock = threading.Lock()
  /external/python/cpython2/Lib/test/
test_capi.py 12 import threading
15 threading = None variable
25 @unittest.skipUnless(threading, 'Threading required for this test.')
72 context.lock = threading.Lock()
73 context.event = threading.Event()
75 threads = [threading.Thread(target=self.pendingcalls_thread,
104 @unittest.skipUnless(threading and thread, 'Threading required for this test.')
124 t = threading.Thread(target=target
    [all...]
test_fork1.py 12 threading = import_module('threading') variable
32 import_started = threading.Event()
43 t = threading.Thread(target=importer)
test_threadedtempfile.py 22 threading = import_module('threading') variable
27 startEvent = threading.Event()
29 class TempFileGreedy(threading.Thread):
  /external/tensorflow/tensorflow/python/summary/writer/
writer_cache.py 21 import threading
38 _lock = threading.RLock()
  /frameworks/rs/tests/lldb/tests/harness/
util_timer.py 19 import threading
67 self._timer = threading.Timer(self._interval, self._callback)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_capi.py 12 import threading
15 threading = None variable
18 @unittest.skipUnless(threading, 'Threading required for this test.')
65 context.lock = threading.Lock()
66 context.event = threading.Event()
69 t = threading.Thread(target=self.pendingcalls_thread, args = (context,))
101 @unittest.skipUnless(threading and thread, 'Threading required for this test.')
121 t = threading.Thread(target=target
    [all...]
test_fork1.py 12 threading = import_module('threading') variable
32 import_started = threading.Event()
43 t = threading.Thread(target=importer)
test_threadedtempfile.py 22 threading = import_module('threading') variable
27 startEvent = threading.Event()
29 class TempFileGreedy(threading.Thread):
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_capi.py 12 import threading
15 threading = None variable
18 @unittest.skipUnless(threading, 'Threading required for this test.')
65 context.lock = threading.Lock()
66 context.event = threading.Event()
69 t = threading.Thread(target=self.pendingcalls_thread, args = (context,))
101 @unittest.skipUnless(threading and thread, 'Threading required for this test.')
121 t = threading.Thread(target=target
    [all...]
test_fork1.py 12 threading = import_module('threading') variable
32 import_started = threading.Event()
43 t = threading.Thread(target=importer)
test_threadedtempfile.py 22 threading = import_module('threading') variable
27 startEvent = threading.Event()
29 class TempFileGreedy(threading.Thread):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_capi.py 12 import threading
15 threading = None variable
18 @unittest.skipUnless(threading, 'Threading required for this test.')
65 context.lock = threading.Lock()
66 context.event = threading.Event()
69 t = threading.Thread(target=self.pendingcalls_thread, args = (context,))
101 @unittest.skipUnless(threading and thread, 'Threading required for this test.')
121 t = threading.Thread(target=target
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_capi.py 12 import threading
15 threading = None variable
18 @unittest.skipUnless(threading, 'Threading required for this test.')
65 context.lock = threading.Lock()
66 context.event = threading.Event()
69 t = threading.Thread(target=self.pendingcalls_thread, args = (context,))
101 @unittest.skipUnless(threading and thread, 'Threading required for this test.')
121 t = threading.Thread(target=target
    [all...]
  /external/ltp/testcases/kernel/io/disktest/
Makefile.aix 76 # reworked threading code
139 ALLHDRS=main.h sfunc.h parse.h childmain.h threading.h globals.h usage.h Getopt.h io.h dump.h timer.h stats.h signals.h
140 SRCS=main.c sfunc.c parse.c childmain.c threading.c globals.c usage.c Getopt.c io.c dump.c timer.c stats.c signals.c
141 OBJS=main.o sfunc.o parse.o childmain.o threading.o globals.o usage.o Getopt.o io.o dump.o timer.o stats.o signals.o
153 childmain.o: childmain.c childmain.h sfunc.h parse.h threading.h $(GBLHDRS)
154 threading.o: threading.c threading.h childmain.h sfunc.h $(GBLHDRS)
155 globals.o: globals.c threading.h $(GBLHDRS)
  /external/autotest/client/common_lib/
decorators_unittest.py 7 import threading
29 self.lock = threading.RLock()
37 threads = [threading.Thread(target=thread_body,
  /external/chromium-trace/catapult/devil/devil/android/
device_test_case.py 5 import threading
11 _devices_lock = threading.Lock()
12 _devices_condition = threading.Condition(_devices_lock)
  /external/python/cpython3/Lib/test/
test_threadedtempfile.py 22 threading = import_module('threading') variable
27 startEvent = threading.Event()
29 class TempFileGreedy(threading.Thread):
  /external/python/cpython3/Tools/scripts/
run_tests.py 14 import threading
16 threading = None variable
45 if threading and not any(is_multiprocess_flag(arg) for arg in regrtest_args):

Completed in 811 milliseconds

12 3 4 5 6 7 8 91011>>