Searched defs:as_daemon (Results 1 - 3 of 3) sorted by last modified time

/art/runtime/
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())) {
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 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;

Completed in 49 milliseconds