Lines Matching refs:jvmtienv_

132       : jvmtienv_(jvmtienv), env_(env), free_name_(false) {  in ScopedThreadInfo()
144 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(info_.name)); in ~ScopedThreadInfo()
155 jvmtiEnv* jvmtienv_; member in tifast::__anon4fd488430111::ScopedThreadInfo
163 ScopedClassInfo(jvmtiEnv* jvmtienv, jclass c) : jvmtienv_(jvmtienv), class_(c) {} in ScopedClassInfo()
167 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(name_)); in ~ScopedClassInfo()
168 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(generic_)); in ~ScopedClassInfo()
169 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(file_)); in ~ScopedClassInfo()
170 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(debug_ext_)); in ~ScopedClassInfo()
180 jvmtiError ret1 = jvmtienv_->GetSourceFileName(class_, &file_); in Init()
181 jvmtiError ret2 = jvmtienv_->GetSourceDebugExtension(class_, &debug_ext_); in Init()
187 return jvmtienv_->GetClassSignature(class_, &name_, gen_ptr) == JVMTI_ERROR_NONE && in Init()
223 jvmtiEnv* jvmtienv_; member in tifast::__anon4fd488430111::ScopedClassInfo
236 : jvmtienv_(jvmtienv), env_(env), method_(m) {} in ScopedMethodInfo()
240 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(name_)); in ~ScopedMethodInfo()
241 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(signature_)); in ~ScopedMethodInfo()
242 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(generic_)); in ~ScopedMethodInfo()
246 if (jvmtienv_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) { in Init()
249 class_info_.reset(new ScopedClassInfo(jvmtienv_, declaring_class_)); in Init()
252 jvmtiError err = jvmtienv_->GetLineNumberTable(method_, &nlines, &lines); in Init()
257 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(lines)); in Init()
263 (jvmtienv_->GetMethodName(method_, &name_, &signature_, &generic_) == JVMTI_ERROR_NONE); in Init()
291 jvmtiEnv* jvmtienv_; member in tifast::__anon4fd488430111::ScopedMethodInfo