Searched defs:thread_group (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Druntime.cc1081 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, argument
1083 return Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL;
H A Dthread.cc372 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_group, argument
401 self->CreatePeer(thread_name, as_daemon, thread_group);
415 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { argument
420 if (thread_group == nullptr) {
421 thread_group = runtime->GetMainThreadGroup();
439 thread_group, thread_name.get(), thread_priority, thread_is_daemon);
456 InitPeer<true>(soa, thread_is_daemon, thread_group, thread_name.get(), thread_priority);
458 InitPeer<false>(soa, thread_is_daemon, thread_group, thread_name.get(), thread_priority);
469 void Thread::InitPeer(ScopedObjectAccess& soa, jboolean thread_is_daemon, jobject thread_group, argument
474 SetObject<kTransactionActive>(tlsPtr_.opeer, soa.Decode<mirror::Object*>(thread_group));
754 mirror::Object* thread_group = local
[all...]
H A Ddebugger.cc2016 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id); local
2017 if (thread_group == nullptr || thread_group == ObjectRegistry::kInvalidObject) {
2023 if (!c->IsAssignableFrom(thread_group->GetClass())) {
2029 return thread_group;
2035 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local
2043 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
2054 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local
2063 mirror::Object* parent = f->GetObject(thread_group);
2071 static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2098 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local
2230 GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) argument
[all...]
H A Djni_internal.cc329 jobject thread_group = nullptr; local
338 thread_group = args->group;
341 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, !runtime->IsCompiler())) {

Completed in 465 milliseconds