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

/art/runtime/
H A Djava_vm_ext.cc329 jobject thread_group = nullptr; local
338 thread_group = args->group;
341 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group,
H A Druntime.cc1311 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, argument
1313 return Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != nullptr;
H A Dthread.cc513 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_group, argument
548 self->CreatePeer(thread_name, as_daemon, thread_group);
579 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { argument
584 if (thread_group == nullptr) {
585 thread_group = runtime->GetMainThreadGroup();
608 thread_group, thread_name.get(), thread_priority, thread_is_daemon);
627 InitPeer<true>(soa, thread_is_daemon, thread_group, thread_name.get(), thread_priority);
629 InitPeer<false>(soa, thread_is_daemon, thread_group, thread_name.get(), thread_priority);
640 void Thread::InitPeer(ScopedObjectAccess& soa, jboolean thread_is_daemon, jobject thread_group, argument
645 SetObject<kTransactionActive>(tlsPtr_.opeer, soa.Decode<mirror::Object*>(thread_group));
933 mirror::Object* thread_group = local
[all...]
H A Ddebugger.cc2071 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id, local
2076 if (thread_group == nullptr) {
2082 if (!c->IsAssignableFrom(thread_group->GetClass())) {
2088 return thread_group;
2094 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local
2101 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
2111 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local
2120 parent = f->GetObject(thread_group);
2127 static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2130 CHECK(thread_group !
2162 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local
2293 GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) argument
[all...]

Completed in 545 milliseconds