HomeSort by relevance Sort by last modified time
    Searched refs:threading (Results 126 - 150 of 524) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/autotest/client/bin/
prespawner.py 42 import logging, subprocess, threading namespace
91 self.thread = threading.Thread(target=run, name='Prespawner')
  /external/autotest/client/common_lib/
powerplay_util.py 5 import error, logging, os, serial, shutil, threading, time namespace
45 self.record_thread = threading.Thread(target=self.start_record_thread)
  /external/autotest/client/cros/
xmlrpc_server.py 12 import threading namespace
16 class XmlRpcServer(threading.Thread):
  /external/autotest/client/site_tests/power_IdleSuspend/
power_IdleSuspend.py 5 import logging, os, tempfile, threading namespace
79 thread = threading.Thread(target=self.wait_for_suspend)
  /external/valgrind/none/tests/amd64-solaris/
coredump_single_thread.post.exp 4 threading model: native threads
  /external/valgrind/none/tests/x86-solaris/
coredump_single_thread.post.exp 4 threading model: native threads
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_poplib.py 17 threading = test_support.import_module('threading') variable
107 class DummyPOP3Server(asyncore.dispatcher, threading.Thread):
112 threading.Thread.__init__(self)
118 self.active_lock = threading.Lock()
123 self.__flag = threading.Event()
124 threading.Thread.start(self)
282 self.evt = threading.Event()
286 self.thread = threading.Thread(target=self.server, args=(self.evt,self.sock))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_poplib.py 17 threading = test_support.import_module('threading') variable
107 class DummyPOP3Server(asyncore.dispatcher, threading.Thread):
112 threading.Thread.__init__(self)
118 self.active_lock = threading.Lock()
123 self.__flag = threading.Event()
124 threading.Thread.start(self)
282 self.evt = threading.Event()
286 self.thread = threading.Thread(target=self.server, args=(self.evt,self.sock))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_poplib.py 17 threading = test_support.import_module('threading') variable
107 class DummyPOP3Server(asyncore.dispatcher, threading.Thread):
112 threading.Thread.__init__(self)
118 self.active_lock = threading.Lock()
123 self.__flag = threading.Event()
124 threading.Thread.start(self)
282 self.evt = threading.Event()
286 self.thread = threading.Thread(target=self.server, args=(self.evt,self.sock))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_poplib.py 17 threading = test_support.import_module('threading') variable
107 class DummyPOP3Server(asyncore.dispatcher, threading.Thread):
112 threading.Thread.__init__(self)
118 self.active_lock = threading.Lock()
123 self.__flag = threading.Event()
124 threading.Thread.start(self)
282 self.evt = threading.Event()
286 self.thread = threading.Thread(target=self.server, args=(self.evt,self.sock))
  /system/extras/tests/net_test/
anycast_test.py 19 import threading namespace
41 class CloseFileDescriptorThread(threading.Thread):
  /external/autotest/client/cros/faft/utils/
firmware_check_keys.py 8 from threading import Timer
  /external/autotest/client/site_tests/firmware_TouchMTB/
authenticator.py 11 import threading namespace
75 class AuthenticationServer(threading.Thread):
81 threading.Thread.__init__(self)
122 self.lock = threading.Lock()
  /external/autotest/client/tests/kvm/tests/
nic_bonding.py 1 import logging, time, threading namespace
  /external/autotest/client/virt/tests/
nicdriver_unload.py 1 import logging, threading, os, time namespace
  /external/autotest/site_utils/
mass_update.py 17 import threading namespace
62 class UpdateThread(threading.Thread):
78 threading.Thread.__init__(self)
274 while len(threading.enumerate()) > 1:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
requestlog.py 3 from threading import Thread
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/sqs/
test_bigmessage.py 28 from threading import Timer
  /external/libvpx/libvpx/vp8/
vp8dx.mk 37 VP8_DX_SRCS-$(CONFIG_MULTITHREAD) += decoder/threading.c
  /external/vulkan-validation-layers/build-android/
android-generate.sh 31 ( cd generated/include; python ../../../genvk.py threading -registry ../../../vk.xml thread_check.h )
42 declare layers=(core_validation device_limits image object_tracker parameter_validation swapchain threading unique_objects)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
vp8dx.mk 37 VP8_DX_SRCS-$(CONFIG_MULTITHREAD) += decoder/threading.c
  /prebuilts/gdb/darwin-x86/lib/python2.7/
dummy_threading.py 1 """Faux ``threading`` version using ``dummy_thread`` instead of ``thread``.
4 to not have ``threading`` considered imported. Had ``threading`` been
21 # ``threading`` below.
26 # in order to initially import ``threading``.
29 if 'threading' in sys_modules:
30 # If ``threading`` is already imported, might as well prevent
33 held_threading = sys_modules['threading']
35 del sys_modules['threading']
45 import threading namespace
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
dummy_threading.py 1 """Faux ``threading`` version using ``dummy_thread`` instead of ``thread``.
4 to not have ``threading`` considered imported. Had ``threading`` been
21 # ``threading`` below.
26 # in order to initially import ``threading``.
29 if 'threading' in sys_modules:
30 # If ``threading`` is already imported, might as well prevent
33 held_threading = sys_modules['threading']
35 del sys_modules['threading']
45 import threading namespace
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dummy_threading.py 1 """Faux ``threading`` version using ``dummy_thread`` instead of ``thread``.
4 to not have ``threading`` considered imported. Had ``threading`` been
21 # ``threading`` below.
26 # in order to initially import ``threading``.
29 if 'threading' in sys_modules:
30 # If ``threading`` is already imported, might as well prevent
33 held_threading = sys_modules['threading']
35 del sys_modules['threading']
45 import threading namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dummy_threading.py 1 """Faux ``threading`` version using ``dummy_thread`` instead of ``thread``.
4 to not have ``threading`` considered imported. Had ``threading`` been
21 # ``threading`` below.
26 # in order to initially import ``threading``.
29 if 'threading' in sys_modules:
30 # If ``threading`` is already imported, might as well prevent
33 held_threading = sys_modules['threading']
35 del sys_modules['threading']
45 import threading namespace
    [all...]

Completed in 1702 milliseconds

1 2 3 4 56 7 8 91011>>