Searched refs:try_items (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Ddex_file_verifier.cc976 // Grab the end of the insns if there are no try_items.
983 // try_items are 4-byte aligned. Verify the spacer is 0.
989 const DexFile::TryItem* try_items = DexFile::GetTryItems(*code_item, 0); local
990 if (!CheckListSize(try_items, try_items_size, sizeof(DexFile::TryItem), "try_items size")) {
1009 if (UNLIKELY(try_items->start_addr_ < last_addr)) {
1010 ErrorStringPrintf("Out-of_order try_item with start_addr: %x", try_items->start_addr_);
1014 if (UNLIKELY(try_items->start_addr_ >= insns_size)) {
1015 ErrorStringPrintf("Invalid try_item start_addr: %x", try_items->start_addr_);
1021 if (try_items
[all...]

Completed in 73 milliseconds