| 107 | } |
| 108 | |
| 109 | inline const char* DexFile::GetMethodShorty(uint32_t idx) const { |
| 110 | return StringDataByIdx(GetProtoId(GetMethodId(idx).proto_idx_).shorty_idx_); |
| 111 | } |
| 112 | |
| 113 | inline const char* DexFile::GetMethodShorty(const MethodId& method_id) const { |
| 114 | return StringDataByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_); |
nothing calls this directly
no outgoing calls
no test coverage detected