Home
last modified time | relevance | path

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

/art/runtime/
Dexception_test.cc118 CatchHandlerIterator iter(*code_item, 4 /* Dex PC in the first try block */); in TEST_F()
128 CatchHandlerIterator iter(*code_item, 8 /* Dex PC in the second try block */); in TEST_F()
135 CatchHandlerIterator iter(*code_item, 11 /* Dex PC not in any try block */); in TEST_F()
Ddex_file.cc1043 CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address) { in CatchHandlerIterator() function in art::CatchHandlerIterator
1068 CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, in CatchHandlerIterator() function in art::CatchHandlerIterator
1074 void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item, in Init()
1087 void CatchHandlerIterator::Init(const byte* handler_data) { in Init()
1103 void CatchHandlerIterator::Next() { in Next()
Ddex_file.h1163 class CatchHandlerIterator {
1165 CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address);
1167 CatchHandlerIterator(const DexFile::CodeItem& code_item,
1170 explicit CatchHandlerIterator(const byte* handler_data) { in CatchHandlerIterator() function
Dclass_linker.cc2624 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.cc220 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) { in FindCatchBlock()
/art/compiler/dex/
Dmir_graph.cc267 CatchHandlerIterator iterator(handlers_ptr); in ProcessTryCatchBlocks()
427 CatchHandlerIterator iterator(*current_code_item_, cur_offset); in ProcessCanThrow()
/art/runtime/verifier/
Dmethod_verifier.cc559 CatchHandlerIterator iterator(handlers_ptr); in ScanTryCatchBlocks()
2711 CatchHandlerIterator iterator(*code_item_, work_insn_idx_); in CodeFlowVerifyInstruction()
2854 CatchHandlerIterator iterator(handlers_ptr); in GetCaughtExceptionType()
/art/compiler/llvm/
Dgbc_expander.cc2791 art::CatchHandlerIterator iter(*dex_compilation_unit_->GetCodeItem(), ti->start_addr_); in GetLandingPadBasicBlock()