Home
last modified time | relevance | path

Searched refs:GetHandlers (Results 1 – 4 of 4) sorted by relevance

/art/dexlayout/
Ddex_verify.cc967 if (!VerifyHandler(orig_try->GetHandlers(), in VerifyTries()
968 output_try->GetHandlers(), in VerifyTries()
1008 dex_ir::TypeAddrPairVector* orig_handlers = orig->GetHandlers(); in VerifyHandler()
1009 dex_ir::TypeAddrPairVector* output_handlers = output->GetHandlers(); in VerifyHandler()
Ddex_writer.cc546 disk_try_item.handler_off_ = try_item->GetHandlers()->GetListOffset(); in WriteCodeItemPostInstructionData()
555 uint32_t size = handlers->HasCatchAll() ? (handlers->GetHandlers()->size() - 1) * -1 : in WriteCodeItemPostInstructionData()
556 handlers->GetHandlers()->size(); in WriteCodeItemPostInstructionData()
558 for (std::unique_ptr<const dex_ir::TypeAddrPair>& handler : *handlers->GetHandlers()) { in WriteCodeItemPostInstructionData()
Ddex_ir.h977 TypeAddrPairVector* GetHandlers() const { return handlers_.get(); } in GetHandlers() function
997 const CatchHandler* GetHandlers() const { return handlers_; } in GetHandlers() function
Ddexlayout.cc801 for (auto& handler : *try_item->GetHandlers()->GetHandlers()) { in DumpCatches()