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

1 2 3 4

  /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));
  /art/runtime/jit/
debugger_interface.h 31 void AddNativeDebugInfoForDex(Thread* current_thread, ArrayRef<const uint8_t> dexfile);
35 void RemoveNativeDebugInfoForDex(Thread* current_thread, ArrayRef<const uint8_t> dexfile);
debugger_interface.cc 229 void AddNativeDebugInfoForDex(Thread* current_thread, ArrayRef<const uint8_t> dexfile) {
230 MutexLock mu(current_thread, *Locks::native_debug_interface_lock_);
241 void RemoveNativeDebugInfoForDex(Thread* current_thread, ArrayRef<const uint8_t> dexfile) {
242 MutexLock mu(current_thread, *Locks::native_debug_interface_lock_);
  /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);
  /external/python/cpython2/Lib/
_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
  /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
  /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
  /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
  /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
  /external/python/cpython3/Lib/
_threading_local.py 165 thread = current_thread()
172 thread = current_thread()
246 from threading import current_thread, RLock
  /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
  /external/libmojo/third_party/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
  /external/autotest/server/cros/
lockfile.py 60 if not hasattr(threading, "current_thread"):
61 threading.current_thread = threading.currentThread
141 name = threading.current_thread().get_name()
  /external/python/cpython2/Lib/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/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/toolchain-utils/crb/
machine_manager_singleton.py 94 m.autotest_run = threading.current_thread()
99 m.autotest_run = threading.current_thread()
104 m.autotest_run = threading.current_thread()
  /external/python/cpython3/Lib/idlelib/
rpc.py 110 print('Thread: %s' % threading.current_thread().name, file=erf)
130 self.sockthread = threading.current_thread()
153 s = self.location + " " + str(threading.current_thread().name)
226 if threading.current_thread() != self.sockthread:
236 if threading.current_thread() != self.sockthread:
305 if threading.current_thread() is self.sockthread:
  /external/python/cpython3/Lib/multiprocessing/
synchronize.py 169 if threading.current_thread().name != 'MainThread':
170 name += '|' + threading.current_thread().name
194 if threading.current_thread().name != 'MainThread':
195 name += '|' + threading.current_thread().name

Completed in 536 milliseconds

1 2 3 4