HomeSort by relevance Sort by last modified time
    Searched refs:current_thread (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/webrtc/webrtc/base/
thread_checker_impl.cc 26 const PlatformThreadRef current_thread = CurrentThreadRef(); local
29 valid_thread_ = current_thread;
30 return IsThreadRefEqual(valid_thread_, current_thread);
thread.cc 339 Thread *current_thread = Thread::Current(); local
340 ASSERT(current_thread != NULL); // AutoThread ensures this
346 smsg.thread = current_thread;
362 current_thread->ReceiveSendsFromThread(this);
363 current_thread->socketserver()->Wait(kForever, false);
381 current_thread->socketserver()->WakeUp();
thread_unittest.cc 255 Thread* current_thread = Thread::Current(); local
256 current_thread->UnwrapCurrent();
264 current_thread->WrapCurrent();
290 Thread* current_thread = Thread::Current(); local
291 ASSERT_TRUE(current_thread != NULL);
305 Bind(&LocalFuncs::InvokeSet, current_thread, &called));
  /external/valgrind/exp-bbv/
bbv_main.c 72 static Int current_thread=0; variable
157 if (bbv_thread[current_thread].dyn_instr > interval_size) {
162 if (bbv_thread[current_thread].bbtrace_fp == NULL) {
163 bbv_thread[current_thread].bbtrace_fp=open_tracefile(current_thread);
168 VG_(fprintf)(bbv_thread[current_thread].bbtrace_fp, "T");
172 if ( bb_elem->inst_counter[current_thread] != 0 ) {
173 VG_(fprintf)(bbv_thread[current_thread].bbtrace_fp, ":%d:%d ",
175 bb_elem->inst_counter[current_thread]);
176 bb_elem->inst_counter[current_thread] = 0
    [all...]
  /external/webrtc/talk/app/webrtc/java/jni/
androidmediacodeccommon.h 87 rtc::Thread* current_thread = rtc::Thread::Current(); local
88 if (current_thread != NULL)
89 current_thread->SetAllowBlockingCalls(true);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_threading_local.py 165 current_thread().__dict__[key] = dict
171 d = current_thread().__dict__.get(key)
174 current_thread().__dict__[key] = d
251 from threading import current_thread, RLock namespace
  /prebuilts/gdb/linux-x86/lib/python2.7/
_threading_local.py 165 current_thread().__dict__[key] = dict
171 d = current_thread().__dict__.get(key)
174 current_thread().__dict__[key] = d
251 from threading import current_thread, RLock namespace
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_threading_local.py 165 current_thread().__dict__[key] = dict
171 d = current_thread().__dict__.get(key)
174 current_thread().__dict__[key] = d
251 from threading import current_thread, RLock namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_threading_local.py 165 current_thread().__dict__[key] = dict
171 d = current_thread().__dict__.get(key)
174 current_thread().__dict__[key] = d
251 from threading import current_thread, RLock namespace
  /external/chromium-trace/catapult/devil/devil/utils/
reraiser_thread.py 210 current_thread = threading.current_thread()
211 if isinstance(current_thread, ReraiserThread):
212 return current_thread._thread_group # pylint: disable=no-member
timeout_retry.py 149 threading.current_thread().name)
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
synchronize.py 153 if threading.current_thread().name != 'MainThread':
154 name += '|' + threading.current_thread().name
178 if threading.current_thread().name != 'MainThread':
179 name += '|' + threading.current_thread().name
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
synchronize.py 153 if threading.current_thread().name != 'MainThread':
154 name += '|' + threading.current_thread().name
178 if threading.current_thread().name != 'MainThread':
179 name += '|' + threading.current_thread().name
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 153 if threading.current_thread().name != 'MainThread':
154 name += '|' + threading.current_thread().name
178 if threading.current_thread().name != 'MainThread':
179 name += '|' + threading.current_thread().name
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 153 if threading.current_thread().name != 'MainThread':
154 name += '|' + threading.current_thread().name
178 if threading.current_thread().name != 'MainThread':
179 name += '|' + threading.current_thread().name
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
log.py 87 tid = threading.current_thread().ident
91 "pid": os.getpid(), "tid": threading.current_thread().ident,
155 tid = threading.current_thread().ident
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
ContextHandler.java 697 Thread current_thread = null; local
705 current_thread = Thread.currentThread();
706 old_classloader = current_thread.getContextClassLoader();
707 current_thread.setContextClassLoader(_classLoader);
731 current_thread.setContextClassLoader(old_classloader);
801 Thread current_thread = null; local
810 current_thread = Thread.currentThread();
811 old_classloader = current_thread.getContextClassLoader();
812 current_thread.setContextClassLoader(_classLoader);
847 current_thread.setContextClassLoader(old_classloader)
949 Thread current_thread = null; local
1125 Thread current_thread = null; local
    [all...]
  /external/autotest/client/common_lib/cros/
retry.py 156 is_main_thread = isinstance(threading.current_thread(),
  /external/autotest/server/cros/dynamic_suite/
frontend_wrappers.py 88 if isinstance(threading.current_thread(), threading._MainThread):
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/dummy/
__init__.py 96 current_process = threading.current_thread
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_threading.py 150 # Calling current_thread() forces an entry for the foreign
152 threading.current_thread()
328 threading.current_thread()
428 threading.current_thread()
479 args=(threading.current_thread(),))
498 args=(threading.current_thread(),))
510 main_thread = threading.current_thread()
701 current_thread = threading.current_thread()
702 self.assertRaises(RuntimeError, current_thread.join)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/dummy/
__init__.py 96 current_process = threading.current_thread
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_threading.py 150 # Calling current_thread() forces an entry for the foreign
152 threading.current_thread()
328 threading.current_thread()
428 threading.current_thread()
479 args=(threading.current_thread(),))
498 args=(threading.current_thread(),))
510 main_thread = threading.current_thread()
701 current_thread = threading.current_thread()
702 self.assertRaises(RuntimeError, current_thread.join)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 96 current_process = threading.current_thread
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threading.py 150 # Calling current_thread() forces an entry for the foreign
152 threading.current_thread()
328 threading.current_thread()
428 threading.current_thread()
479 args=(threading.current_thread(),))
498 args=(threading.current_thread(),))
510 main_thread = threading.current_thread()
701 current_thread = threading.current_thread()
702 self.assertRaises(RuntimeError, current_thread.join)
    [all...]

Completed in 581 milliseconds

1 2 3