| 28 | namespace art_lkchan { |
| 29 | |
| 30 | inline int32_t DexFile::GetStringLength(const StringId& string_id) const { |
| 31 | const uint8_t* ptr = DataBegin() + string_id.string_data_off_; |
| 32 | return DecodeUnsignedLeb128(&ptr); |
| 33 | } |
| 34 | |
| 35 | inline const char* DexFile::GetStringDataAndUtf16Length(const StringId& string_id, |
| 36 | uint32_t* utf16_length) const { |
nothing calls this directly
no test coverage detected