| 133 | } |
| 134 | |
| 135 | inline const DexFile::TryItem* DexFile::GetTryItems(const DexInstructionIterator& code_item_end, |
| 136 | uint32_t offset) { |
| 137 | return reinterpret_cast<const TryItem*> |
| 138 | (RoundUp(reinterpret_cast<uintptr_t>(&code_item_end.Inst()), TryItem::kAlignment)) + offset; |
| 139 | } |
| 140 | |
| 141 | static inline bool DexFileStringEquals(const DexFile* df1, dex::StringIndex sidx1, |
| 142 | const DexFile* df2, dex::StringIndex sidx2) { |