Lines Matching refs:thread_name
305 std::string thread_name = GetThreadName(jenv, jni_env, thread); in ClassLoadCallback() local
306 if (thread_name == "") { in ClassLoadCallback()
309 if (thread_name_filter_ != "" && thread_name_filter_ != thread_name) { in ClassLoadCallback()
316 thread_name.c_str())); in ClassLoadCallback()
327 std::string thread_name = GetThreadName(jenv, jni_env, thread); in ClassPrepareCallback() local
328 if (thread_name == "") { in ClassPrepareCallback()
331 if (thread_name_filter_ != "" && thread_name_filter_ != thread_name) { in ClassPrepareCallback()
339 thread_name.c_str(), in ClassPrepareCallback()
391 ScopedLocalRef<jobject> thread_name(env, env->NewStringUTF(name_str.c_str())); in RunEventThread() local
392 CHECK(thread_name.get() != nullptr); in RunEventThread()
403 env->CallNonvirtualVoidMethod(thread.get(), thread_klass.get(), initID, thread_name.get()); in RunEventThread()