Searched refs:as_daemon (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | thread.h | 181 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_group, 184 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_peer); 1265 bool as_daemon, 1304 bool as_daemon, 1307 void CreatePeer(const char* name, bool as_daemon, jobject thread_group);
|
D | thread.cc | 963 Thread* Thread::Attach(const char* thread_name, bool as_daemon, PeerAction peer_action) { in Attach() argument 981 self = new Thread(as_daemon); in Attach() 1022 bool as_daemon, in Attach() argument 1031 self->CreatePeer(thread_name, as_daemon, thread_group); in Attach() 1054 return Attach(thread_name, as_daemon, create_peer_action); in Attach() 1057 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_peer) { in Attach() argument 1070 return Attach(thread_name, as_daemon, set_peer_action); in Attach() 1073 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { in CreatePeer() argument 1088 jboolean thread_is_daemon = as_daemon; in CreatePeer() 1146 bool as_daemon, in CreateCompileTimePeer() argument [all …]
|
D | runtime.h | 247 bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
|
D | runtime.cc | 2034 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, in AttachCurrentThread() argument 2037 Thread* self = Thread::Attach(thread_name, as_daemon, thread_group, create_peer); in AttachCurrentThread()
|
/art/runtime/jni/ |
D | java_vm_ext.cc | 425 …atic jint AttachCurrentThreadInternal(JavaVM* vm, JNIEnv** p_env, void* raw_args, bool as_daemon) { in AttachCurrentThreadInternal() argument 451 << (as_daemon ? "AttachCurrentThreadAsDaemon" : "AttachCurrentThread") << ": " in AttachCurrentThreadInternal() 459 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, in AttachCurrentThreadInternal()
|