Searched refs:as_daemon (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | thread.cc | 1007 bool as_daemon, in Attach() argument 1027 self = new Thread(as_daemon); in Attach() 1068 bool as_daemon, in Attach() argument 1078 self->CreatePeer(thread_name, as_daemon, thread_group); in Attach() 1104 return Attach(thread_name, as_daemon, create_peer_action, should_run_callbacks); in Attach() 1107 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_peer) { in Attach() argument 1117 return Attach(thread_name, as_daemon, set_peer_action, /* should_run_callbacks= */ true); in Attach() 1120 void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { in CreatePeer() argument 1149 self, peer.Get(), thr_group.Get(), thread_name.Get(), thread_priority, as_daemon); in CreatePeer() 1164 as_daemon, in CreatePeer() [all …]
|
D | thread.h | 274 bool as_daemon, 279 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_peer); 1567 bool as_daemon, 1655 bool as_daemon, 1659 void CreatePeer(const char* name, bool as_daemon, jobject thread_group); 1663 bool as_daemon,
|
D | runtime.h | 306 bool as_daemon,
|
D | runtime.cc | 2561 bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, in AttachCurrentThread() argument 2565 as_daemon, in AttachCurrentThread()
|
/art/runtime/jni/ |
D | java_vm_ext.cc | 449 …atic jint AttachCurrentThreadInternal(JavaVM* vm, JNIEnv** p_env, void* raw_args, bool as_daemon) { in AttachCurrentThreadInternal() argument 475 << (as_daemon ? "AttachCurrentThreadAsDaemon" : "AttachCurrentThread") << ": " in AttachCurrentThreadInternal() 483 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, in AttachCurrentThreadInternal()
|