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); 1318 bool as_daemon, 1361 bool as_daemon, 1364 void CreatePeer(const char* name, bool as_daemon, jobject thread_group);
|
D | thread.cc | 980 Thread* Thread::Attach(const char* thread_name, bool as_daemon, PeerAction peer_action) { in Attach() argument 998 self = new Thread(as_daemon); in Attach() 1039 bool as_daemon, in Attach() argument 1048 self->CreatePeer(thread_name, as_daemon, thread_group); in Attach() 1071 return Attach(thread_name, as_daemon, create_peer_action); in Attach() 1074 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_peer) { in Attach() argument 1087 return Attach(thread_name, as_daemon, set_peer_action); in Attach() 1090 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { in CreatePeer() argument 1105 jboolean thread_is_daemon = as_daemon; in CreatePeer() 1163 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 | 2117 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, in AttachCurrentThread() argument 2120 Thread* self = Thread::Attach(thread_name, as_daemon, thread_group, create_peer); in AttachCurrentThread()
|
/art/runtime/jni/ |
D | java_vm_ext.cc | 432 …atic jint AttachCurrentThreadInternal(JavaVM* vm, JNIEnv** p_env, void* raw_args, bool as_daemon) { in AttachCurrentThreadInternal() argument 458 << (as_daemon ? "AttachCurrentThreadAsDaemon" : "AttachCurrentThread") << ": " in AttachCurrentThreadInternal() 466 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, in AttachCurrentThreadInternal()
|