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

/art/runtime/
H A Dthread.h141 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_group,
862 void CreatePeer(const char* name, bool as_daemon, jobject thread_group);
H A Dthread.cc375 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_group, argument
390 self = new Thread(as_daemon);
404 self->CreatePeer(thread_name, as_daemon, thread_group);
423 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { argument
437 jboolean thread_is_daemon = as_daemon;
H A Druntime.h199 bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
H A Druntime.cc1096 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, argument
1098 return Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL;
H A Djni_internal.cc307 static jint JII_AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* raw_args, bool as_daemon) { argument
333 << (as_daemon ? "AttachCurrentThreadAsDaemon" : "AttachCurrentThread") << ": "
341 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, !runtime->IsCompiler())) {

Completed in 902 milliseconds