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

/art/runtime/
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 Dthread.cc315 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_group, argument
330 self = new Thread(as_daemon);
344 self->CreatePeer(thread_name, as_daemon, thread_group);
356 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { argument
366 jboolean thread_is_daemon = as_daemon;
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.cc402 static jint JII_AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* raw_args, bool as_daemon) { argument
428 << (as_daemon ? "AttachCurrentThreadAsDaemon" : "AttachCurrentThread") << ": "
436 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, !runtime->IsCompiler())) {

Completed in 75 milliseconds