/external/chromium-trace/catapult/devil/devil/utils/ |
timeout_retry.py | 65 thread_group = reraiser_thread.CurrentThreadGroup() 66 while thread_group: 67 if isinstance(thread_group, TimeoutRetryThreadGroup): 68 return thread_group 69 thread_group = thread_group.blocked_parent_thread_group 163 thread_group = TimeoutRetryThreadGroup(timeout, threads=[child_thread]) 164 thread_group.StartAll(will_block=True) 166 thread_group.JoinAll(watcher=thread_group.GetWatcher(), timeout=60 [all...] |
reraiser_thread.py | 226 thread_group = ReraiserThreadGroup(ReraiserThread(f) for f in funcs) 227 thread_group.StartAll(will_block=True) 228 return thread_group.GetAllReturnValues(watcher=watcher)
|
/art/runtime/ |
thread.cc | 732 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_group, 767 self->CreatePeer(thread_name, as_daemon, thread_group); 808 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { 813 if (thread_group == nullptr) { 814 thread_group = runtime->GetMainThreadGroup(); 1244 mirror::Object* thread_group = local [all...] |
debugger.cc | 2007 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id, local 2030 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local 2047 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local 2097 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local [all...] |
java_vm_ext.cc | 389 jobject thread_group = nullptr; local 398 thread_group = args->group; 401 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, [all...] |
thread.h | 157 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_group, [all...] |
runtime.h | 243 bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
|
runtime.cc | [all...] |
debugger.h | 448 static void GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) [all...] |