Lines Matching refs:id

35   jmethodID id = env->FromReflectedMethod(method);  in Java_art_Test910_getMethodName()  local
40 jvmtiError result = jvmti_env->GetMethodName(id, &name, &sig, &gen); in Java_art_Test910_getMethodName()
68 jvmtiError result2 = jvmti_env->GetMethodName(id, nullptr, nullptr, nullptr); in Java_art_Test910_getMethodName()
78 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_getMethodDeclaringClass() local
81 jvmtiError result = jvmti_env->GetMethodDeclaringClass(id, &declaring_class); in Java_art_Test910_getMethodDeclaringClass()
91 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_getMethodModifiers() local
94 jvmtiError result = jvmti_env->GetMethodModifiers(id, &modifiers); in Java_art_Test910_getMethodModifiers()
104 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_getMaxLocals() local
107 jvmtiError result = jvmti_env->GetMaxLocals(id, &max_locals); in Java_art_Test910_getMaxLocals()
117 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_getArgumentsSize() local
120 jvmtiError result = jvmti_env->GetArgumentsSize(id, &arguments); in Java_art_Test910_getArgumentsSize()
130 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_getMethodLocationStart() local
134 jvmtiError result = jvmti_env->GetMethodLocation(id, &start, &end); in Java_art_Test910_getMethodLocationStart()
144 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_getMethodLocationEnd() local
148 jvmtiError result = jvmti_env->GetMethodLocation(id, &start, &end); in Java_art_Test910_getMethodLocationEnd()
158 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_isMethodNative() local
161 jvmtiError result = jvmti_env->IsMethodNative(id, &is_native); in Java_art_Test910_isMethodNative()
171 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_isMethodObsolete() local
174 jvmtiError result = jvmti_env->IsMethodObsolete(id, &is_obsolete); in Java_art_Test910_isMethodObsolete()
184 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_isMethodSynthetic() local
187 jvmtiError result = jvmti_env->IsMethodSynthetic(id, &is_synthetic); in Java_art_Test910_isMethodSynthetic()