Searched refs:as_daemon (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | thread.h | 182 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_group, 185 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_peer); 1313 bool as_daemon, 1356 bool as_daemon, 1359 void CreatePeer(const char* name, bool as_daemon, jobject thread_group);
|
D | thread.cc | 975 Thread* Thread::Attach(const char* thread_name, bool as_daemon, PeerAction peer_action) { in Attach() argument 993 self = new Thread(as_daemon); in Attach() 1034 bool as_daemon, in Attach() argument 1043 self->CreatePeer(thread_name, as_daemon, thread_group); in Attach() 1066 return Attach(thread_name, as_daemon, create_peer_action); in Attach() 1069 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_peer) { in Attach() argument 1082 return Attach(thread_name, as_daemon, set_peer_action); in Attach() 1085 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { in CreatePeer() argument 1100 jboolean thread_is_daemon = as_daemon; in CreatePeer() 1158 bool as_daemon, in CreateCompileTimePeer() argument [all …]
|
D | runtime.h | 263 bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
|
D | runtime.cc | 2111 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, in AttachCurrentThread() argument 2114 Thread* self = Thread::Attach(thread_name, as_daemon, thread_group, create_peer); in AttachCurrentThread()
|
/art/runtime/jni/ |
D | java_vm_ext.cc | 434 …atic jint AttachCurrentThreadInternal(JavaVM* vm, JNIEnv** p_env, void* raw_args, bool as_daemon) { in AttachCurrentThreadInternal() argument 460 << (as_daemon ? "AttachCurrentThreadAsDaemon" : "AttachCurrentThread") << ": " in AttachCurrentThreadInternal() 468 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, in AttachCurrentThreadInternal()
|