Searched defs:methods_ptr (Results 1 - 4 of 4) sorted by relevance

/art/compiler/debug/
H A Delf_debug_info_writer.h471 auto* methods_ptr = type->GetMethodsPtr(); local
472 if (methods_ptr == nullptr) {
476 methods_ptr = new (storage) LengthPrefixedArray<ArtMethod>(0);
477 type->SetMethodsPtr(methods_ptr, 0, 0);
481 snprintf(name, sizeof(name), "0x%" PRIXPTR, reinterpret_cast<uintptr_t>(methods_ptr));
/art/runtime/openjdkjvmti/
H A Dti_class.cc604 jmethodID** methods_ptr) {
611 if (method_count_ptr == nullptr || methods_ptr == nullptr) {
638 *methods_ptr = method_array;
601 GetClassMethods(jvmtiEnv* env, jclass jklass, jint* method_count_ptr, jmethodID** methods_ptr) argument
H A DOpenjdkJvmTi.cc713 jmethodID** methods_ptr) {
715 return ClassUtil::GetClassMethods(env, klass, method_count_ptr, methods_ptr);
710 GetClassMethods(jvmtiEnv* env, jclass klass, jint* method_count_ptr, jmethodID** methods_ptr) argument
/art/runtime/openjdkjvmti/include/
H A Djvmti.h1278 jmethodID** methods_ptr);
2174 jmethodID** methods_ptr) {
2175 return functions->GetClassMethods(this, klass, method_count_ptr, methods_ptr);
2172 GetClassMethods(jclass klass, jint* method_count_ptr, jmethodID** methods_ptr) argument

Completed in 50 milliseconds