HomeSort by relevance Sort by last modified time
    Searched full:_thread (Results 26 - 50 of 137) sorted by null

12 3 4 5 6

  /external/autotest/site_utils/lxc/container_pool/
async_listener.py 43 self._thread = None
56 self._thread = threading.Thread(name='connection_listener',
58 self._thread.start()
101 self._thread.join(1)
102 return not self._thread.isAlive()
  /external/python/cpython3/Doc/library/
_thread.rst 1 :mod:`_thread` --- Low-level threading API
4 .. module:: _thread
28 implementation. For systems lacking the :mod:`_thread` module, the
163 import _thread
165 a_lock = _thread.allocate_lock()
179 equivalent to calling :func:`_thread.exit`.
dummy_threading.rst 12 is meant to be imported when the :mod:`_thread` module is not provided on a
  /external/python/cpython3/Include/
pythread.h 36 NOTE: this isn't the same value as `_thread.TIMEOUT_MAX`. The _thread
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
mt_allocator.h 191 template<bool _Thread>
390 template<template <bool> class _PoolTp, bool _Thread>
393 typedef _PoolTp<_Thread> pool_type;
403 template<template <bool> class _PoolTp, bool _Thread>
459 template<template <bool> class _PoolTp, bool _Thread>
460 struct __common_pool_policy : public __common_pool_base<_PoolTp, _Thread>
463 bool _Thread1 = _Thread>
467 using __common_pool_base<_PoolTp, _Thread>::_S_get_pool;
468 using __common_pool_base<_PoolTp, _Thread>::_S_initialize_once;
472 template<typename _Tp, template <bool> class _PoolTp, bool _Thread>
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
mt_allocator.h 191 template<bool _Thread>
390 template<template <bool> class _PoolTp, bool _Thread>
393 typedef _PoolTp<_Thread> pool_type;
403 template<template <bool> class _PoolTp, bool _Thread>
459 template<template <bool> class _PoolTp, bool _Thread>
460 struct __common_pool_policy : public __common_pool_base<_PoolTp, _Thread>
463 bool _Thread1 = _Thread>
467 using __common_pool_base<_PoolTp, _Thread>::_S_get_pool;
468 using __common_pool_base<_PoolTp, _Thread>::_S_initialize_once;
472 template<typename _Tp, template <bool> class _PoolTp, bool _Thread>
    [all...]
  /external/autotest/client/cros/
device_jail_utils.py 46 self._thread = threading.Thread(target=target_func)
51 self._thread.start()
54 self._thread.join(self._timeout_func())
55 if self._thread.is_alive() and not exc_val:
  /external/python/cpython3/Lib/test/
test_threading_local.py 8 _thread = support.import_module('_thread') variable
196 _local = _thread._local
210 _threading_local.local = _thread._local
test_threading.py 12 _thread = import_module('_thread') variable
128 _thread.start_new_thread(f, ())
140 except _thread.error:
152 except _thread.error:
168 tid = _thread.start_new_thread(f, (mutex,))
287 import ctypes, sys, time, _thread
290 ready = _thread.allocate_lock()
307 _thread.start_new_thread(waitingThread, ())
438 import _thread, threading, os, tim
    [all...]
  /external/python/cpython3/Lib/test/test_tools/
test_sundry.py 43 @unittest.skipIf(not support.threading, "test requires _thread module")
  /external/webrtc/webrtc/test/channel_transport/
udp_socket_manager_posix.h 78 rtc::PlatformThread _thread; member in class:webrtc::test::UdpSocketManagerPosixImpl
udp_socket_manager_posix.cc 188 : _thread(UdpSocketManagerPosixImpl::Run,
224 _thread.Start();
225 _thread.SetPriority(rtc::kRealtimePriority);
233 _thread.Stop();
  /external/libunwind/doc/
unw_set_caching_policy.tex 30 cache, as if \Const{UNW\_CACHE\_PER\_THREAD} had been specified.
31 \item[\Const{UNW\_CACHE\_PER\_THREAD}] Enables caching using
  /external/autotest/client/cros/audio/
cmd_utils.py 61 self._thread = threading.Thread(target=self._service_run)
62 self._thread.daemon = True
63 self._thread.start()
112 self._thread.join()
  /kernel/tests/net/test/
tun_twister.py 88 self._thread = threading.Thread(target=self._RunLoop, name="TunTwister")
93 self._thread.start()
99 self._thread.join(TunTwister._POLL_TIMEOUT_SEC)
101 if self._thread.isAlive():
  /external/autotest/client/site_tests/policy_ProxySettings/
policy_ProxySettings.py 82 self._thread = threading.Thread(target=self._server.serve_forever)
86 self._thread.start()
91 self._thread.join()
  /external/libxml2/python/tests/
thread2.py 4 from _thread import get_ident
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_threading_local.py 8 _thread = test_support.import_module('thread') variable
191 _local = _thread._local
  /external/python/cpython2/Lib/test/
test_threading_local.py 8 _thread = support.import_module('thread') variable
186 _local = _thread._local
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_threading_local.py 8 _thread = test_support.import_module('thread') variable
191 _local = _thread._local
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_threading_local.py 8 _thread = test_support.import_module('thread') variable
191 _local = _thread._local
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threading_local.py 8 _thread = test_support.import_module('thread') variable
191 _local = _thread._local
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_threading_local.py 8 _thread = test_support.import_module('thread') variable
191 _local = _thread._local
  /external/webrtc/webrtc/voice_engine/test/android/android_test/jni/
android_test.cc 180 rtc::PlatformThread _thread; member in class:ThreadTest
185 if (_thread)
186 _thread->Stop();
191 _thread(Run, this, "ThreadTest thread");
264 _thread->Stop();
273 if (_thread)
275 _thread->Start();
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
compat.py 89 import _thread as thread

Completed in 704 milliseconds

12 3 4 5 6