Lines Matching refs:jvmti_env

40   jvmtiError result = jvmti_env->GetMethodName(id, &name, &sig, &gen);  in Java_art_Test910_getMethodName()
41 if (JvmtiErrorToException(env, jvmti_env, result)) { in Java_art_Test910_getMethodName()
58 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(name)); in Java_art_Test910_getMethodName()
61 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(sig)); in Java_art_Test910_getMethodName()
64 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(gen)); in Java_art_Test910_getMethodName()
68 jvmtiError result2 = jvmti_env->GetMethodName(id, nullptr, nullptr, nullptr); in Java_art_Test910_getMethodName()
69 if (JvmtiErrorToException(env, jvmti_env, result2)) { in Java_art_Test910_getMethodName()
81 jvmtiError result = jvmti_env->GetMethodDeclaringClass(id, &declaring_class); in Java_art_Test910_getMethodDeclaringClass()
82 if (JvmtiErrorToException(env, jvmti_env, result)) { in Java_art_Test910_getMethodDeclaringClass()
94 jvmtiError result = jvmti_env->GetMethodModifiers(id, &modifiers); in Java_art_Test910_getMethodModifiers()
95 if (JvmtiErrorToException(env, jvmti_env, result)) { in Java_art_Test910_getMethodModifiers()
107 jvmtiError result = jvmti_env->GetMaxLocals(id, &max_locals); in Java_art_Test910_getMaxLocals()
108 if (JvmtiErrorToException(env, jvmti_env, result)) { in Java_art_Test910_getMaxLocals()
120 jvmtiError result = jvmti_env->GetArgumentsSize(id, &arguments); in Java_art_Test910_getArgumentsSize()
121 if (JvmtiErrorToException(env, jvmti_env, result)) { in Java_art_Test910_getArgumentsSize()
134 jvmtiError result = jvmti_env->GetMethodLocation(id, &start, &end); in Java_art_Test910_getMethodLocationStart()
135 if (JvmtiErrorToException(env, jvmti_env, result)) { in Java_art_Test910_getMethodLocationStart()
148 jvmtiError result = jvmti_env->GetMethodLocation(id, &start, &end); in Java_art_Test910_getMethodLocationEnd()
149 if (JvmtiErrorToException(env, jvmti_env, result)) { in Java_art_Test910_getMethodLocationEnd()
161 jvmtiError result = jvmti_env->IsMethodNative(id, &is_native); in Java_art_Test910_isMethodNative()
162 if (JvmtiErrorToException(env, jvmti_env, result)) { in Java_art_Test910_isMethodNative()
174 jvmtiError result = jvmti_env->IsMethodObsolete(id, &is_obsolete); in Java_art_Test910_isMethodObsolete()
175 if (JvmtiErrorToException(env, jvmti_env, result)) { in Java_art_Test910_isMethodObsolete()
187 jvmtiError result = jvmti_env->IsMethodSynthetic(id, &is_synthetic); in Java_art_Test910_isMethodSynthetic()
188 if (JvmtiErrorToException(env, jvmti_env, result)) { in Java_art_Test910_isMethodSynthetic()