HomeSort by relevance Sort by last modified time
    Searched defs:_thread (Results 1 - 25 of 25) sorted by null

  /external/jetty/src/java/org/eclipse/jetty/server/
AsyncNCSARequestLog.java 39 private transient WriterThread _thread; field in class:AsyncNCSARequestLog
106 _thread = new WriterThread();
107 _thread.start();
113 _thread.interrupt();
114 _thread.join();
116 _thread=null;
  /external/opencv3/3rdparty/openexr/IlmThread/
IlmThread.h 139 HANDLE _thread; member in class:IlmThread::Thread
141 pthread_t _thread; member in class:IlmThread::Thread
  /external/jetty/src/java/org/eclipse/jetty/util/thread/
ShutdownThread.java 41 private static final ShutdownThread _thread = new ShutdownThread(); field in class:ShutdownThread
95 return _thread;
101 _thread._lifeCycles.addAll(Arrays.asList(lifeCycles));
102 if (_thread._lifeCycles.size()>0)
103 _thread.hook();
109 _thread._lifeCycles.addAll(index,Arrays.asList(lifeCycles));
110 if (_thread._lifeCycles.size()>0)
111 _thread.hook();
117 _thread._lifeCycles.remove(lifeCycle);
118 if (_thread._lifeCycles.size()==0
    [all...]
  /external/mesa3d/src/glx/apple/
apple_glx_log.c 116 char *_thread; local
117 asprintf(&_thread, "%"PRIu64, thread);
118 if (_thread) {
119 asl_set(msg, "Thread", _thread);
120 free(_thread);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
compat.py 52 from boto.vendored.six.moves import filter, http_client, map, _thread, \
53 urllib, zip namespace
  /external/webrtc/webrtc/test/channel_transport/
udp_socket_manager_posix.h 78 rtc::PlatformThread _thread; member in class:webrtc::test::UdpSocketManagerPosixImpl
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_dummy_thread.py 8 import dummy_thread as _thread namespace
23 self.lock = _thread.allocate_lock()
38 #Make sure release of an unlocked thread raises _thread.error
39 self.assertRaises(_thread.error, self.lock.release)
74 _thread.start_new_thread(delay_unlock,(self.lock, DELAY))
90 #Make sure _thread.exit() raises SystemExit
91 self.assertRaises(SystemExit, _thread.exit)
94 #Test sanity of _thread.get_ident()
95 self.assertIsInstance(_thread.get_ident(), int,
96 "_thread.get_ident() returned a non-integer"
    [all...]
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_dummy_thread.py 8 import dummy_thread as _thread namespace
23 self.lock = _thread.allocate_lock()
38 #Make sure release of an unlocked thread raises _thread.error
39 self.assertRaises(_thread.error, self.lock.release)
74 _thread.start_new_thread(delay_unlock,(self.lock, DELAY))
90 #Make sure _thread.exit() raises SystemExit
91 self.assertRaises(SystemExit, _thread.exit)
94 #Test sanity of _thread.get_ident()
95 self.assertIsInstance(_thread.get_ident(), int,
96 "_thread.get_ident() returned a non-integer"
    [all...]
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_dummy_thread.py 8 import dummy_thread as _thread namespace
23 self.lock = _thread.allocate_lock()
38 #Make sure release of an unlocked thread raises _thread.error
39 self.assertRaises(_thread.error, self.lock.release)
74 _thread.start_new_thread(delay_unlock,(self.lock, DELAY))
90 #Make sure _thread.exit() raises SystemExit
91 self.assertRaises(SystemExit, _thread.exit)
94 #Test sanity of _thread.get_ident()
95 self.assertIsInstance(_thread.get_ident(), int,
96 "_thread.get_ident() returned a non-integer"
    [all...]
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_dummy_thread.py 8 import dummy_thread as _thread namespace
23 self.lock = _thread.allocate_lock()
38 #Make sure release of an unlocked thread raises _thread.error
39 self.assertRaises(_thread.error, self.lock.release)
74 _thread.start_new_thread(delay_unlock,(self.lock, DELAY))
90 #Make sure _thread.exit() raises SystemExit
91 self.assertRaises(SystemExit, _thread.exit)
94 #Test sanity of _thread.get_ident()
95 self.assertIsInstance(_thread.get_ident(), int,
96 "_thread.get_ident() returned a non-integer"
    [all...]
test_threading_local.py 8 _thread = test_support.import_module('thread') variable
191 _local = _thread._local
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/utils/
test_utils.py 38 from boto.compat import json, _thread namespace
50 _thread.start_new_thread(f, ())
  /prebuilts/gdb/darwin-x86/lib/python2.7/
tempfile.py 60 import thread as _thread namespace
62 import dummy_thread as _thread namespace
63 _allocate_lock = _thread.allocate_lock
  /prebuilts/gdb/linux-x86/lib/python2.7/
tempfile.py 60 import thread as _thread namespace
62 import dummy_thread as _thread namespace
63 _allocate_lock = _thread.allocate_lock
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tempfile.py 60 import thread as _thread namespace
62 import dummy_thread as _thread namespace
63 _allocate_lock = _thread.allocate_lock
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tempfile.py 60 import thread as _thread namespace
62 import dummy_thread as _thread namespace
63 _allocate_lock = _thread.allocate_lock
  /external/chromium-trace/catapult/third_party/Paste/paste/
httpserver.py 29 from six.moves import _thread namespace
265 self.server.thread_pool.worker_tracker[_thread.get_ident()][1] = self.wsgi_environ
    [all...]
  /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/guice/extensions/struts2/lib/
jetty-util-6.1.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-util/8.1.14.v20131031/
jetty-util-8.1.14.v20131031.jar 
  /external/guice/extensions/persist/lib/
log4j-1.2.14.jar 
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-1.2.14.jar 

Completed in 858 milliseconds