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

  /external/chromium-trace/catapult/devil/devil/utils/
timeout_retry.py 64 thread_group = reraiser_thread.CurrentThreadGroup()
65 while thread_group:
66 if isinstance(thread_group, TimeoutRetryThreadGroup):
67 return thread_group
68 thread_group = thread_group.blocked_parent_thread_group
153 thread_group = TimeoutRetryThreadGroup(timeout, threads=[child_thread])
154 thread_group.StartAll(will_block=True)
156 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...]
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...]
debugger.cc 2026 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id, local
2049 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local
2066 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local
2116 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local
    [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...]

Completed in 77 milliseconds