| 73 | } |
| 74 | |
| 75 | uint32_t StandardDexFile::GetCodeItemSize(const DexFile::CodeItem& item) const { |
| 76 | DCHECK(IsInDataSection(&item)); |
| 77 | return reinterpret_cast<uintptr_t>(CodeItemDataAccessor(*this, &item).CodeItemDataEnd()) - |
| 78 | reinterpret_cast<uintptr_t>(&item); |
| 79 | } |
| 80 | |
| 81 | } // namespace art_lkchan |
nothing calls this directly
no test coverage detected