| 100 | } |
| 101 | |
| 102 | const char* DexFileVerifier::CheckLoadStringByIdx(dex::StringIndex idx, const char* error_string) { |
| 103 | if (UNLIKELY(!CheckIndex(idx.index_, dex_file_->NumStringIds(), error_string))) { |
| 104 | return nullptr; |
| 105 | } |
| 106 | return dex_file_->StringDataByIdx(idx); |
| 107 | } |
| 108 | |
| 109 | // Try to find the name of the method with the given index. We do not want to rely on DexFile |
| 110 | // infrastructure at this point, so do it all by hand. begin and header correspond to begin_ and |
nothing calls this directly
no test coverage detected