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

1 2

  /external/valgrind/main/exp-bbv/
bbv_main.c 74 static Int current_thread=0; variable
167 if (bbv_thread[current_thread].dyn_instr > interval_size) {
172 if (bbv_thread[current_thread].bbtrace_fd < 0) {
173 bbv_thread[current_thread].bbtrace_fd=open_tracefile(current_thread);
178 VG_(write)(bbv_thread[current_thread].bbtrace_fd,"T",1);
182 if ( bb_elem->inst_counter[current_thread] != 0 ) {
185 bb_elem->inst_counter[current_thread]);
186 VG_(write)(bbv_thread[current_thread].bbtrace_fd,
188 bb_elem->inst_counter[current_thread] = 0
    [all...]
  /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
threading.py 30 'current_thread', 'enumerate', 'Event',
66 # Issue #4188: calling current_thread() can incur an infinite
300 # Return True if lock is owned by current_thread.
709 return current_thread().daemon
1163 current_thread = currentThread variable
    [all...]
  /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
threading.py 30 'current_thread', 'enumerate', 'Event',
66 # Issue #4188: calling current_thread() can incur an infinite
300 # Return True if lock is owned by current_thread.
709 return current_thread().daemon
1163 current_thread = currentThread variable
    [all...]
  /external/chromium_org/jingle/glue/
thread_wrapper.cc 135 JingleThreadWrapper* current_thread = JingleThreadWrapper::current();
136 DCHECK(current_thread != NULL) << "Send() can be called only from a "
144 if (current_thread == this) {
153 DCHECK(current_thread->send_allowed_) << "Send()'ing synchronous "
172 &current_thread->pending_send_event_};
177 current_thread->ProcessPendingSends();
  /external/qemu/memcheck/
memcheck_proc_management.c 35 static ThreadDesc* current_thread = NULL; variable
182 if (tid == current_tid && current_thread != NULL) {
183 return current_thread;
189 current_thread = thread;
205 if (current_thread == NULL) {
213 current_thread = thread;
214 return current_thread;
218 return current_thread;
322 if (current_thread != NULL && current_thread->process->pid == pid)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
thread.cc 389 Thread *current_thread = Thread::Current(); local
390 ASSERT(current_thread != NULL); // AutoThread ensures this
397 smsg.thread = current_thread;
410 current_thread->ReceiveSends();
411 current_thread->socketserver()->Wait(kForever, false);
427 current_thread->socketserver()->WakeUp();
  /external/chromium_org/third_party/libjingle/source/talk/base/
thread.cc 396 Thread *current_thread = Thread::Current(); local
397 ASSERT(current_thread != NULL); // AutoThread ensures this
404 smsg.thread = current_thread;
417 current_thread->ReceiveSends();
418 current_thread->socketserver()->Wait(kForever, false);
434 current_thread->socketserver()->WakeUp();
thread_unittest.cc 255 Thread* current_thread = Thread::Current(); local
256 current_thread->UnwrapCurrent();
264 current_thread->WrapCurrent();
  /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
managers.py 230 threading.current_thread().name)
280 threading.current_thread().name)
293 threading.current_thread().name)
421 threading.current_thread().name = name
740 if threading.current_thread().name != 'MainThread':
741 name += '|' + threading.current_thread().name
754 threading.current_thread().name)
818 threading.current_thread().name)
    [all...]
pool.py 320 thread = threading.current_thread()
333 thread = threading.current_thread()
372 thread = threading.current_thread()
492 if threading.current_thread() is not worker_handler:
503 if threading.current_thread() is not task_handler:
507 if threading.current_thread() is not result_handler:
  /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
managers.py 230 threading.current_thread().name)
280 threading.current_thread().name)
293 threading.current_thread().name)
421 threading.current_thread().name = name
740 if threading.current_thread().name != 'MainThread':
741 name += '|' + threading.current_thread().name
754 threading.current_thread().name)
818 threading.current_thread().name)
    [all...]
pool.py 320 thread = threading.current_thread()
333 thread = threading.current_thread()
372 thread = threading.current_thread()
492 if threading.current_thread() is not worker_handler:
503 if threading.current_thread() is not task_handler:
507 if threading.current_thread() is not result_handler:
  /external/chromium_org/content/browser/
browser_thread_impl.cc 251 BrowserThread::ID current_thread; local
253 GetCurrentThreadIdentifier(&current_thread) &&
254 current_thread >= identifier;
  /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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 96 current_process = threading.current_thread
  /prebuilts/python/linux-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...]
  /external/chromium_org/tools/memory_watcher/
call_stack.cc 252 HANDLE current_thread = GetCurrentThread(); local
263 current_thread,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_lock.py 17 from threading import current_thread as currentThread
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_lock.py 17 from threading import current_thread as currentThread
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
SDL_QuartzVideo.m     [all...]

Completed in 805 milliseconds

1 2