Home
last modified time | relevance | path

Searched refs:out_ptr (Results 1 – 1 of 1) sorted by relevance

/art/openjdkjvmti/
Dti_class.cc565 unsigned char* out_ptr; in GetClassFields() local
566 jvmtiError allocError = env->Allocate(array_size * sizeof(jfieldID), &out_ptr); in GetClassFields()
570 jfieldID* field_array = reinterpret_cast<jfieldID*>(out_ptr); in GetClassFields()
610 unsigned char* out_ptr; in GetClassMethods() local
611 jvmtiError allocError = env->Allocate(array_size * sizeof(jmethodID), &out_ptr); in GetClassMethods()
615 jmethodID* method_array = reinterpret_cast<jmethodID*>(out_ptr); in GetClassMethods()
660 unsigned char* out_ptr; in GetImplementedInterfaces() local
661 jvmtiError allocError = env->Allocate(array_size * sizeof(jclass), &out_ptr); in GetImplementedInterfaces()
665 jclass* interface_array = reinterpret_cast<jclass*>(out_ptr); in GetImplementedInterfaces()
675 env->Deallocate(out_ptr); in GetImplementedInterfaces()