Searched refs:thread_group (Results 1 - 6 of 6) sorted by relevance

/art/runtime/
H A Dthread.cc315 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_group, argument
344 self->CreatePeer(thread_name, as_daemon, thread_group);
356 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { argument
361 if (thread_group == NULL) {
362 thread_group = runtime->GetMainThreadGroup();
380 thread_group, thread_name.get(), thread_priority, thread_is_daemon);
398 SetObject(opeer_, soa.Decode<mirror::Object*>(thread_group));
690 mirror::Object* thread_group = local
693 if (thread_group != NULL) {
697 reinterpret_cast<mirror::String*>(group_name_field->GetObject(thread_group));
[all...]
H A Dthread.h101 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_group,
604 void CreatePeer(const char* name, bool as_daemon, jobject thread_group);
H A Druntime.h247 bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
H A Ddebugger.cc1627 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id); local
1628 CHECK(thread_group != NULL);
1634 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
1639 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id); local
1640 CHECK(thread_group != NULL);
1646 mirror::Object* parent = f->GetObject(thread_group);
1796 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id); local
1797 ThreadListVisitor tlv(soa, thread_group, thread_ids);
1804 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id); local
1807 mirror::ArtField* groups_field = thread_group
[all...]
H A Druntime.cc1118 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, argument
1120 bool success = Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL;
H A Djni_internal.cc424 jobject thread_group = NULL; local
433 thread_group = args->group;
436 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, !runtime->IsCompiler())) {

Completed in 128 milliseconds