Lines Matching refs:value_ptr
526 jobject* value_ptr) { in GetLocalObject() argument
529 return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); in GetLocalObject()
535 jobject* value_ptr) { in GetLocalInstance() argument
538 return MethodUtil::GetLocalInstance(env, thread, depth, value_ptr); in GetLocalInstance()
545 jint* value_ptr) { in GetLocalInt() argument
548 return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); in GetLocalInt()
555 jlong* value_ptr) { in GetLocalLong() argument
558 return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); in GetLocalLong()
565 jfloat* value_ptr) { in GetLocalFloat() argument
568 return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); in GetLocalFloat()
575 jdouble* value_ptr) { in GetLocalDouble() argument
578 return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); in GetLocalDouble()
1261 static jvmtiError GetSystemProperty(jvmtiEnv* env, const char* property, char** value_ptr) { in GetSystemProperty() argument
1263 return PropertiesUtil::GetSystemProperty(env, property, value_ptr); in GetSystemProperty()