| 90 | } |
| 91 | |
| 92 | inline const char* DexFile::GetMethodDeclaringClassDescriptor(const MethodId& method_id) const { |
| 93 | const DexFile::TypeId& type_id = GetTypeId(method_id.class_idx_); |
| 94 | return GetTypeDescriptor(type_id); |
| 95 | } |
| 96 | |
| 97 | inline const Signature DexFile::GetMethodSignature(const MethodId& method_id) const { |
| 98 | return Signature(this, GetProtoId(method_id.proto_idx_)); |
nothing calls this directly
no outgoing calls
no test coverage detected