Searched refs:ptypes (Results 1 – 4 of 4) sorted by relevance
/art/runtime/native/ |
D | java_lang_reflect_Executable.cc | 355 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/ |
D | interpreter_common.cc | 1181 Handle<mirror::ObjectArray<mirror::Class>> ptypes = hs.NewHandle( in BuildCallSiteForBootstrapMethod() local 1185 if (ptypes.IsNull()) { in BuildCallSiteForBootstrapMethod() 1192 ptypes->Set(0, GetClassRoot<mirror::MethodHandlesLookup>(class_linker)); in BuildCallSiteForBootstrapMethod() 1204 ptypes->Set(index, ptype); in BuildCallSiteForBootstrapMethod() 1212 return mirror::MethodType::Create(self, rtype, ptypes); in BuildCallSiteForBootstrapMethod()
|
/art/runtime/mirror/ |
D | var_handle.cc | 1525 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()
|
D | var_handle_test.cc | 221 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()
|