Searched defs:as_daemon (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Djava_vm_ext.cc396 static jint AttachCurrentThreadInternal(JavaVM* vm, JNIEnv** p_env, void* raw_args, bool as_daemon) { argument
422 << (as_daemon ? "AttachCurrentThreadAsDaemon" : "AttachCurrentThread") << ": "
430 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group,
H A Druntime.cc308 /* as_daemon */ false,
314 /* as_daemon */ false,
1915 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, argument
1918 Thread* self = Thread::Attach(thread_name, as_daemon, thread_group, create_peer);
H A Dthread.cc775 Thread* Thread::Attach(const char* thread_name, bool as_daemon, PeerAction peer_action) { argument
791 self = new Thread(as_daemon);
832 bool as_daemon,
841 self->CreatePeer(thread_name, as_daemon, thread_group);
864 return Attach(thread_name, as_daemon, create_peer_action);
867 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_peer) { argument
880 return Attach(thread_name, as_daemon, set_peer_action);
883 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { argument
898 jboolean thread_is_daemon = as_daemon;
955 bool as_daemon,
831 Attach(const char* thread_name, bool as_daemon, jobject thread_group, bool create_peer) argument
953 CreateCompileTimePeer(JNIEnv* env, const char* name, bool as_daemon, jobject thread_group) argument
[all...]

Completed in 1771 milliseconds