Home
last modified time | relevance | path

Searched refs:CatchHandlerIterator (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dexception_test.cc136 CatchHandlerIterator iter(*code_item, 4 /* Dex PC in the first try block */); in TEST_F()
146 CatchHandlerIterator iter(*code_item, 8 /* Dex PC in the second try block */); in TEST_F()
153 CatchHandlerIterator iter(*code_item, 11 /* Dex PC not in any try block */); in TEST_F()
Ddex_file.cc1231 CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address) { in CatchHandlerIterator() function in art::CatchHandlerIterator
1256 CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, in CatchHandlerIterator() function in art::CatchHandlerIterator
1262 void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item, in Init()
1275 void CatchHandlerIterator::Init(const byte* handler_data) { in Init()
1291 void CatchHandlerIterator::Next() { in Next()
Ddex_file.h1322 class CatchHandlerIterator {
1324 CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address);
1326 CatchHandlerIterator(const DexFile::CodeItem& code_item,
1329 explicit CatchHandlerIterator(const byte* handler_data) { in CatchHandlerIterator() function
Dclass_linker.cc3756 CatchHandlerIterator iterator(handlers_ptr); in ResolveMethodExceptionHandlerTypes()
/art/runtime/entrypoints/portable/
Dportable_throw_entrypoints.cc91 for (CatchHandlerIterator it(*code_item, *try_item); it.HasNext(); it.Next()) { in art_portable_find_catch_block_from_code()
/art/runtime/mirror/
Dart_method.cc226 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) { in FindCatchBlock()
/art/compiler/dex/
Dmir_graph.cc322 CatchHandlerIterator iterator(handlers_ptr); in ProcessTryCatchBlocks()
552 CatchHandlerIterator iterator(*current_code_item_, cur_offset); in ProcessCanThrow()
/art/runtime/verifier/
Dmethod_verifier.cc633 CatchHandlerIterator iterator(handlers_ptr); in ScanTryCatchBlocks()
2836 CatchHandlerIterator iterator(*code_item_, work_insn_idx_); in CodeFlowVerifyInstruction()
2998 CatchHandlerIterator iterator(handlers_ptr); in GetCaughtExceptionType()
/art/compiler/llvm/
Dgbc_expander.cc2782 art::CatchHandlerIterator iter(*dex_compilation_unit_->GetCodeItem(), ti->start_addr_); in GetLandingPadBasicBlock()