Home
last modified time | relevance | path

Searched refs:as_daemon (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Dthread.cc1012 bool as_daemon, in Attach() argument
1032 self = new Thread(as_daemon); in Attach()
1073 bool as_daemon, in Attach() argument
1083 self->CreatePeer(thread_name, as_daemon, thread_group); in Attach()
1109 return Attach(thread_name, as_daemon, create_peer_action, should_run_callbacks); in Attach()
1112 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_peer) { in Attach() argument
1122 return Attach(thread_name, as_daemon, set_peer_action, /* should_run_callbacks= */ true); in Attach()
1125 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { in CreatePeer() argument
1154 self, peer.Get(), thr_group.Get(), thread_name.Get(), thread_priority, as_daemon); in CreatePeer()
1169 as_daemon, in CreatePeer()
[all …]
Dthread.h236 bool as_daemon,
241 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_peer);
1423 bool as_daemon,
1497 bool as_daemon,
1501 void CreatePeer(const char* name, bool as_daemon, jobject thread_group);
1505 bool as_daemon,
Druntime.h298 bool as_daemon,
Druntime.cc2427 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, in AttachCurrentThread() argument
2431 as_daemon, in AttachCurrentThread()
/art/runtime/jni/
Djava_vm_ext.cc442 …atic jint AttachCurrentThreadInternal(JavaVM* vm, JNIEnv** p_env, void* raw_args, bool as_daemon) { in AttachCurrentThreadInternal() argument
468 << (as_daemon ? "AttachCurrentThreadAsDaemon" : "AttachCurrentThread") << ": " in AttachCurrentThreadInternal()
476 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, in AttachCurrentThreadInternal()