Home
last modified time | relevance | path

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

/art/runtime/native/
Djava_lang_reflect_Executable.cc355 Handle<mirror::ObjectArray<mirror::Class>> ptypes = hs.NewHandle( in Executable_getParameterTypesInternal() local
357 if (ptypes.IsNull()) { in Executable_getParameterTypesInternal()
370 ptypes->SetWithoutChecks<false>(i, param.Get()); in Executable_getParameterTypesInternal()
373 return soa.AddLocalReference<jobjectArray>(ptypes.Get()); in Executable_getParameterTypesInternal()
/art/runtime/interpreter/
Dinterpreter_common.cc860 Handle<mirror::ObjectArray<mirror::Class>> ptypes = hs.NewHandle( in BuildCallSiteForBootstrapMethod() local
864 if (ptypes.IsNull()) { in BuildCallSiteForBootstrapMethod()
871 ptypes->Set(0, GetClassRoot<mirror::MethodHandlesLookup>(class_linker)); in BuildCallSiteForBootstrapMethod()
883 ptypes->Set(index, ptype); in BuildCallSiteForBootstrapMethod()
891 return mirror::MethodType::Create(self, rtype, ptypes); in BuildCallSiteForBootstrapMethod()
/art/runtime/mirror/
Dvar_handle.cc1525 Handle<ObjectArray<Class>> ptypes = in GetMethodTypeForAccessMode() local
1527 if (ptypes == nullptr) { in GetMethodTypeForAccessMode()
1538 ptypes->Set(i, ptypes_array[i]); in GetMethodTypeForAccessMode()
1540 return MethodType::Create(self, rtype, ptypes); in GetMethodTypeForAccessMode()
Dvar_handle_test.cc221 Handle<ObjectArray<Class>> ptypes = hs.NewHandle( in MethodTypeOf() local
225 ptypes->Set(i, class_linker->FindClass(self, descriptors[i].c_str(), boot_class_loader)); in MethodTypeOf()
229 return MethodType::Create(self, rtype, ptypes); in MethodTypeOf()