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

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
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):
test_threading_local.py 9 threading = test_support.import_module('threading') variable
32 t = threading.Thread(target=target, args=(local, weaklist))
52 # of a threading.local derived class, the per-thread dictionary
68 t = threading.Thread(target=f, args=(i,))
81 e1 = threading.Event()
82 e2 = threading.Event()
100 t = threading.Thread(target=f)
131 e1 = threading.Event()
132 e2 = threading.Event(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
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):
test_threading_local.py 9 threading = test_support.import_module('threading') variable
32 t = threading.Thread(target=target, args=(local, weaklist))
52 # of a threading.local derived class, the per-thread dictionary
68 t = threading.Thread(target=f, args=(i,))
81 e1 = threading.Event()
82 e2 = threading.Event()
100 t = threading.Thread(target=f)
131 e1 = threading.Event()
132 e2 = threading.Event(
    [all...]
  /external/autotest/site_utils/
metadata_reporter.py 15 import threading
42 _report_lock = threading.Lock()
43 _abort = threading.Event()
44 _queue_full = threading.Event()
146 reporting_thread = threading.Thread(target=_run)
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/testGenerator/
SubprocessLogger.py 29 import threading
36 class StreamLoggerThread(threading.Thread):
84 class SubprocessLoggerThread(threading.Thread):
89 __closeEvent = threading.Event()
205 return [t for t in threading.enumerate() if isinstance(t, cls)]
  /external/python/cpython2/Lib/ctypes/test/
test_errno.py 6 import threading
8 threading = None variable
29 if threading:
42 t = threading.Thread(target=_worker)
71 t = threading.Thread(target=_worker)
  /external/python/cpython3/Lib/ctypes/test/
test_errno.py 5 import threading
7 threading = None variable
28 if threading:
41 t = threading.Thread(target=_worker)
70 t = threading.Thread(target=_worker)
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_errno.py 6 import threading
8 threading = None variable
29 if threading:
42 t = threading.Thread(target=_worker)
71 t = threading.Thread(target=_worker)
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_errno.py 6 import threading
8 threading = None variable
29 if threading:
42 t = threading.Thread(target=_worker)
71 t = threading.Thread(target=_worker)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_errno.py 6 import threading
8 threading = None variable
29 if threading:
42 t = threading.Thread(target=_worker)
71 t = threading.Thread(target=_worker)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_errno.py 6 import threading
8 threading = None variable
29 if threading:
42 t = threading.Thread(target=_worker)
71 t = threading.Thread(target=_worker)
  /external/autotest/site_utils/rpm_control_system/
rpm_integration_test.py 2 import threading
57 threading.Thread(target=rpm.queue_request,
59 threading.Thread(target=rpm.queue_request,
78 threading.Thread(target=rpm.queue_request,
80 threading.Thread(target=rpm.queue_request,
86 # threading.Thread(target=rpm2.queue_request,
88 # threading.Thread(target=rpm2.queue_request,
90 # threading.Thread(target=rpm2.queue_request,
131 threading.Thread(target=poe_controller.queue_request,
133 threading.Thread(target=poe_controller.queue_request
    [all...]
  /external/python/cpython3/Lib/multiprocessing/dummy/
__init__.py 20 import threading
26 from threading import Lock, RLock, Semaphore, BoundedSemaphore
27 from threading import Event, Condition, Barrier
34 class DummyProcess(threading.Thread):
37 threading.Thread.__init__(self, group, target, name, args, kwargs)
48 threading.Thread.start(self)
62 current_process = threading.current_thread
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_threading_local.py 9 threading = test_support.import_module('threading') variable
32 t = threading.Thread(target=target, args=(local, weaklist))
52 # of a threading.local derived class, the per-thread dictionary
68 t = threading.Thread(target=f, args=(i,))
81 e1 = threading.Event()
82 e2 = threading.Event()
100 t = threading.Thread(target=f)
131 e1 = threading.Event()
132 e2 = threading.Event()
    [all...]
  /external/python/cpython2/Lib/test/
test_threading_local.py 9 threading = support.import_module('threading') variable
32 t = threading.Thread(target=target, args=(local, weaklist))
52 # of a threading.local derived class, the per-thread dictionary
66 with support.start_threads(threading.Thread(target=f, args=(i,))
76 e1 = threading.Event()
77 e2 = threading.Event()
95 t = threading.Thread(target=f)
126 e1 = threading.Event()
127 e2 = threading.Event(
    [all...]
  /external/python/cpython3/Lib/test/
test_threading_local.py 9 threading = support.import_module('threading') variable
33 t = threading.Thread(target=target, args=(local, weaklist))
53 # of a threading.local derived class, the per-thread dictionary
67 with support.start_threads(threading.Thread(target=f, args=(i,))
77 e1 = threading.Event()
78 e2 = threading.Event()
97 t = threading.Thread(target=f)
124 e1 = threading.Event()
125 e2 = threading.Event(
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_threading_local.py 9 threading = test_support.import_module('threading') variable
32 t = threading.Thread(target=target, args=(local, weaklist))
52 # of a threading.local derived class, the per-thread dictionary
68 t = threading.Thread(target=f, args=(i,))
81 e1 = threading.Event()
82 e2 = threading.Event()
100 t = threading.Thread(target=f)
131 e1 = threading.Event()
132 e2 = threading.Event(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_threading_local.py 9 threading = test_support.import_module('threading') variable
32 t = threading.Thread(target=target, args=(local, weaklist))
52 # of a threading.local derived class, the per-thread dictionary
68 t = threading.Thread(target=f, args=(i,))
81 e1 = threading.Event()
82 e2 = threading.Event()
100 t = threading.Thread(target=f)
131 e1 = threading.Event()
132 e2 = threading.Event(
    [all...]
  /external/google-benchmark/
mingw.py 80 threading = arch.setdefault(value[2].strip(), {})
81 exceptions = threading.setdefault(value[3].strip(), {})
172 def root(location = None, arch = None, version = None, threading = None,
180 if not (arch and version and threading and exceptions and revision):
191 if not threading:
194 threading = 'posix'
196 threading = 'win32'
198 threading = keys[0]
200 keys = versions[version][arch][threading].keys()
208 revision = max(versions[version][arch][threading][exceptions].keys()
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/
mingw.py 80 threading = arch.setdefault(value[2].strip(), {})
81 exceptions = threading.setdefault(value[3].strip(), {})
172 def root(location = None, arch = None, version = None, threading = None,
180 if not (arch and version and threading and exceptions and revision):
191 if not threading:
194 threading = 'posix'
196 threading = 'win32'
198 threading = keys[0]
200 keys = versions[version][arch][threading].keys()
208 revision = max(versions[version][arch][threading][exceptions].keys()
    [all...]
  /system/bt/stack/include/
btu.h 32 #include <base/threading/thread.h>
  /external/autotest/client/cros/
dark_resume_listener.py 6 import threading
41 thread = threading.Thread(None, loop_runner)

Completed in 377 milliseconds

1 23 4 5 6 7 8 91011>>