Home
last modified time | relevance | path

Searched refs:child_thread (Results 1 – 2 of 2) sorted by relevance

/aosp12/system/extras/simpleperf/
H A Dcmd_trace_sched.cpp226 auto& child_thread = thread_map_[r.data->tid]; in ProcessRecord() local
229 child_thread.process_id = r.data->pid; in ProcessRecord()
230 child_thread.thread_id = r.data->tid; in ProcessRecord()
231 child_thread.name = parent_thread.name; in ProcessRecord()
/aosp12/art/runtime/
H A Dthread.cc861 Thread* child_thread = new Thread(is_daemon); in CreateNativeThread() local
863 child_thread->tlsPtr_.jpeer = env->NewGlobalRef(java_peer); in CreateNativeThread()
869 reinterpret_cast<jlong>(child_thread)); in CreateNativeThread()
875 JNIEnvExt::Create(child_thread, Runtime::Current()->GetJavaVM(), &error_msg)); in CreateNativeThread()
881 child_thread->tlsPtr_.tmp_jni_env = child_jni_env_ext.get(); in CreateNativeThread()
889 child_thread); in CreateNativeThread()
909 child_thread->DeleteJPeer(env); in CreateNativeThread()
910 delete child_thread; in CreateNativeThread()
911 child_thread = nullptr; in CreateNativeThread()