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

  /external/webrtc/src/system_wrappers/source/
thread_win.cc 32 _thread(NULL),
52 if (_thread)
54 CloseHandle(_thread);
81 _thread=(HANDLE)_beginthreadex(NULL, 1024*1024, StartThread, (void*)this, 0,
83 if(_thread == NULL)
93 SetThreadPriority(_thread, THREAD_PRIORITY_BELOW_NORMAL);
96 SetThreadPriority(_thread, THREAD_PRIORITY_NORMAL);
99 SetThreadPriority(_thread, THREAD_PRIORITY_ABOVE_NORMAL);
102 SetThreadPriority(_thread, THREAD_PRIORITY_HIGHEST);
105 SetThreadPriority(_thread, THREAD_PRIORITY_TIME_CRITICAL)
    [all...]
thread_win.h 58 HANDLE _thread; member in class:webrtc::ThreadWindows
thread_posix.h 67 pthread_t _thread; member in class:webrtc::ThreadPosix
thread_posix.cc 109 _thread(0)
182 result |= pthread_create(&_thread, &_attr, &StartThread, this);
198 threadID = static_cast<unsigned int>(_thread);
227 result = pthread_setschedparam(_thread, policy, &param);
288 if (_thread && (0 != pthread_cancel(_thread)))
trace_impl.h 119 ThreadWrapper& _thread; member in class:webrtc::TraceImpl
trace_impl.cc 75 _thread(*ThreadWrapper::CreateThread(TraceImpl::Run, this,
89 _thread.Start(tid);
112 _thread.SetNotAlive();
116 bool stopped = _thread.Stop();
129 delete &_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...]
  /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/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/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);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
queues.py 90 self._thread = None
106 if self._thread is None:
182 self._thread = threading.Thread(
188 self._thread.daemon = True
190 debug('doing self._thread.start()')
191 self._thread.start()
192 debug('... done self._thread.start()')
197 self._thread, Queue._finalize_join,
198 [weakref.ref(self._thread)],
317 if self._thread is None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
queues.py 90 self._thread = None
106 if self._thread is None:
182 self._thread = threading.Thread(
188 self._thread.daemon = True
190 debug('doing self._thread.start()')
191 self._thread.start()
192 debug('... done self._thread.start()')
197 self._thread, Queue._finalize_join,
198 [weakref.ref(self._thread)],
317 if self._thread is None
    [all...]
  /external/libxml2/python/tests/
thread2.py 4 from _thread import get_ident
  /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/trace-viewer/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...]
  /frameworks/base/services/core/java/com/android/server/am/
ProcessRecord.java 429 public void makeActive(IApplicationThread _thread, ProcessStatsService tracker) {
452 thread = _thread;
    [all...]
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-1.2.14.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-util/8.1.14.v20131031/
jetty-util-8.1.14.v20131031.jar 

Completed in 366 milliseconds