/external/jetty/src/java/org/eclipse/jetty/util/thread/ |
D | ShutdownThread.java | 41 private static final ShutdownThread _thread = new ShutdownThread(); field in ShutdownThread 95 return _thread; in getInstance() 101 _thread._lifeCycles.addAll(Arrays.asList(lifeCycles)); in register() 102 if (_thread._lifeCycles.size()>0) in register() 103 _thread.hook(); in register() 109 _thread._lifeCycles.addAll(index,Arrays.asList(lifeCycles)); in register() 110 if (_thread._lifeCycles.size()>0) in register() 111 _thread.hook(); in register() 117 _thread._lifeCycles.remove(lifeCycle); in deregister() 118 if (_thread._lifeCycles.size()==0) in deregister() [all …]
|
/external/jetty/src/java/org/eclipse/jetty/server/ |
D | AsyncNCSARequestLog.java | 39 private transient WriterThread _thread; field in AsyncNCSARequestLog 106 _thread = new WriterThread(); in doStart() 107 _thread.start(); in doStart() 113 _thread.interrupt(); in doStop() 114 _thread.join(); in doStop() 116 _thread=null; in doStop()
|
/external/opencv3/3rdparty/openexr/IlmThread/ |
D | IlmThreadWin32.cpp | 77 DWORD status = ::WaitForSingleObject (_thread, INFINITE); in ~Thread() 79 bool ok = ::CloseHandle (_thread) != FALSE; in ~Thread() 88 _thread = (HANDLE)::_beginthreadex (0, 0, &threadLoop, this, 0, &id); in start() 90 if (_thread == 0) in start()
|
D | IlmThreadPosix.cpp | 83 int error = ::pthread_join (_thread, 0); in ~Thread() 91 if (int error = ::pthread_create (&_thread, 0, Start (threadLoop), this)) in start()
|
D | IlmThread.h | 139 HANDLE _thread; 141 pthread_t _thread;
|
/external/autotest/server/cros/ |
D | remote_command.py | 61 self._thread = _HelperThread(self._host, cmd) 62 self._thread.start() 85 self._thread.join(timeout) 86 if self._thread.isAlive(): 107 return self._thread.result
|
/external/mesa3d/src/glx/apple/ |
D | apple_glx_log.c | 116 char *_thread; in _apple_glx_vlog() local 117 asprintf(&_thread, "%"PRIu64, thread); in _apple_glx_vlog() 118 if (_thread) { in _apple_glx_vlog() 119 asl_set(msg, "Thread", _thread); in _apple_glx_vlog() 120 free(_thread); in _apple_glx_vlog()
|
/external/chromium-trace/catapult/systrace/profile_chrome/ |
D | systrace_controller.py | 34 self._thread = None 45 self._thread = threading.Thread(target=self._CollectData) 46 self._thread.start() 52 self._thread.join() 53 self._thread = None
|
/external/autotest/client/cros/audio/ |
D | cmd_utils.py | 59 self._thread = threading.Thread(target=self._service_run) 60 self._thread.daemon = True 61 self._thread.start() 104 self._thread.join()
|
/external/autotest/client/site_tests/policy_ProxySettings/ |
D | policy_ProxySettings.py | 91 self._thread = threading.Thread(target=self._server.serve_forever) 95 self._thread.start() 101 self._thread.join()
|
/external/autotest/client/cros/ |
D | dns_server.py | 21 self._thread = threading.Thread(target=self._dns.run, 53 self._thread.start() 126 self._thread.join()
|
/external/webrtc/webrtc/test/channel_transport/ |
D | udp_socket_manager_posix.cc | 188 : _thread(UdpSocketManagerPosixImpl::Run, in UdpSocketManagerPosixImpl() 224 _thread.Start(); in Start() 225 _thread.SetPriority(rtc::kRealtimePriority); in Start() 233 _thread.Stop(); in Stop()
|
D | udp_socket_manager_posix.h | 78 rtc::PlatformThread _thread; variable
|
/external/webrtc/webrtc/voice_engine/test/android/android_test/jni/ |
D | android_test.cc | 180 rtc::PlatformThread _thread; member in ThreadTest 185 if (_thread) in ~ThreadTest() 186 _thread->Stop(); in ~ThreadTest() 191 _thread(Run, this, "ThreadTest thread"); in ThreadTest() 264 _thread->Stop(); in Process() 273 if (_thread) in RunTest() 275 _thread->Start(); in RunTest()
|
/external/autotest/scheduler/ |
D | status_server.py | 126 self._thread = threading.Thread(target=self._serve_until_shutdown, 128 self._thread.start()
|
/external/autotest/client/site_tests/network_ProxyResolver/ |
D | network_ProxyResolver.py | 84 self._thread = threading.Thread(target=self._server.serve_forever) 88 self._thread.start() 94 self._thread.join()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ |
D | compat.py | 52 from boto.vendored.six.moves import filter, http_client, map, _thread, \
|
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/ |
D | rfc2217.py | 432 self._thread = threading.Thread(target=self._telnetReadLoop) 433 self._thread.setDaemon(True) 434 self._thread.setName('pySerial RFC 2217 reader thread for %s' % (self._port,)) 435 self._thread.start() 517 if self._thread: 518 self._thread.join() 578 if self._thread is None: 744 self._thread = None
|
/external/libxml2/python/tests/ |
D | thread2.py | 4 from _thread import get_ident
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/utils/ |
D | test_utils.py | 38 from boto.compat import json, _thread 50 _thread.start_new_thread(f, ())
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
D | httpserver.py | 29 from six.moves import _thread 265 self.server.thread_pool.worker_tracker[_thread.get_ident()][1] = self.wsgi_environ 869 thread_id = thread_obj.thread_id = _thread.get_ident()
|
/external/chromium-trace/catapult/third_party/six/documentation/ |
D | index.rst | 622 | ``_thread`` | :mod:`py2:thread` | :mod:`py3:_thread` …
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/documentation/ |
D | index.rst | 609 | ``_thread`` | :mod:`py2:thread` | :mod:`py3:_thread` …
|