Searched refs:as_daemon (Results 1 – 5 of 5) sorted by relevance
/aosp12/art/runtime/ |
H A D | thread.h | 183 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_group, 186 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_peer); 1334 bool as_daemon, 1377 bool as_daemon, 1380 void CreatePeer(const char* name, bool as_daemon, jobject thread_group);
|
H A D | thread.cc | 981 Thread* Thread::Attach(const char* thread_name, bool as_daemon, PeerAction peer_action) { in Attach() argument 999 self = new Thread(as_daemon); in Attach() 1040 bool as_daemon, in Attach() argument 1049 self->CreatePeer(thread_name, as_daemon, thread_group); in Attach() 1075 return Attach(thread_name, as_daemon, create_peer_action); in Attach() 1078 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_peer) { in Attach() argument 1091 return Attach(thread_name, as_daemon, set_peer_action); in Attach() 1094 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { in CreatePeer() argument 1109 jboolean thread_is_daemon = as_daemon; in CreatePeer() 1167 bool as_daemon, in CreateCompileTimePeer() argument [all …]
|
H A D | runtime.h | 272 bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
|
H A D | runtime.cc | 2327 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, in AttachCurrentThread() argument 2330 Thread* self = Thread::Attach(thread_name, as_daemon, thread_group, create_peer); in AttachCurrentThread()
|
/aosp12/art/runtime/jni/ |
H A 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()
|