Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_file.cc366 const ProtoId* DexFile::FindProtoId(dex::TypeIndex return_type_idx, in FindProtoId() argument
375 int compare = return_type_idx.index_ - proto.return_type_idx_.index_; in FindProtoId()
405 dex::TypeIndex* return_type_idx, in CreateTypeList() argument
447 *return_type_idx = type_idx; in CreateTypeList()
Ddex_file.h477 const dex::ProtoId* FindProtoId(dex::TypeIndex return_type_idx,
480 const dex::ProtoId* FindProtoId(dex::TypeIndex return_type_idx, in FindProtoId() argument
482 return FindProtoId(return_type_idx, &signature_type_idxs[0], signature_type_idxs.size()); in FindProtoId()
487 dex::TypeIndex* return_type_idx,
/art/runtime/verifier/
Dmethod_verifier.cc2974 dex::TypeIndex return_type_idx = in CodeFlowVerifyInstruction() local
2976 const char* descriptor = dex_file_->StringByTypeIdx(return_type_idx); in CodeFlowVerifyInstruction()
2998 dex::TypeIndex return_type_idx = in CodeFlowVerifyInstruction() local
3000 return_type_descriptor = dex_file_->StringByTypeIdx(return_type_idx); in CodeFlowVerifyInstruction()
3077 dex::TypeIndex return_type_idx = in CodeFlowVerifyInstruction() local
3079 descriptor = dex_file_->StringByTypeIdx(return_type_idx); in CodeFlowVerifyInstruction()
3134 dex::TypeIndex return_type_idx = in CodeFlowVerifyInstruction() local
3136 descriptor = dex_file_->StringByTypeIdx(return_type_idx); in CodeFlowVerifyInstruction()
5024 dex::TypeIndex return_type_idx = proto_id.return_type_idx_; in GetMethodReturnType() local
5025 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(return_type_idx)); in GetMethodReturnType()
/art/profman/
Dprofman.cc970 dex::TypeIndex return_type_idx; in FindMethodIndex() local
972 if (!dex_file->CreateTypeList(signature, &return_type_idx, &param_type_idxs)) { in FindMethodIndex()
976 const dex::ProtoId* proto_id = dex_file->FindProtoId(return_type_idx, param_type_idxs); in FindMethodIndex()
/art/runtime/
Dclass_linker.cc5789 dex::TypeIndex return_type_idx = proto_id.return_type_idx_; in ThrowSignatureCheckResolveReturnTypeException() local
5790 std::string return_type = dex_file->PrettyType(return_type_idx); in ThrowSignatureCheckResolveReturnTypeException()