Home
last modified time | relevance | path

Searched refs:found_dex_pc (Results 1 – 3 of 3) sorted by relevance

/art/runtime/mirror/
Dart_method.cc218 uint32_t found_dex_pc = DexFile::kDexNoIndex; in FindCatchBlock() local
224 found_dex_pc = it.GetHandlerAddress(); in FindCatchBlock()
234 found_dex_pc = it.GetHandlerAddress(); in FindCatchBlock()
238 if (found_dex_pc != DexFile::kDexNoIndex) { in FindCatchBlock()
240 Instruction::At(&mh.GetCodeItem()->insns_[found_dex_pc]); in FindCatchBlock()
243 return found_dex_pc; in FindCatchBlock()
/art/runtime/
Dthread.cc1797 uint32_t found_dex_pc = method->FindCatchBlock(to_find_, dex_pc, &clear_exception_); in HandleTryItems() local
1798 if (found_dex_pc != DexFile::kDexNoIndex) { in HandleTryItems()
1799 handler_dex_pc_ = found_dex_pc; in HandleTryItems()
1800 handler_quick_frame_pc_ = method->ToNativePc(found_dex_pc); in HandleTryItems()
/art/runtime/interpreter/
Dinterpreter.cc1026 uint32_t found_dex_pc = shadow_frame.GetMethod()->FindCatchBlock(exception->GetClass(), dex_pc, in FindNextInstructionFollowingException() local
1028 if (found_dex_pc == DexFile::kDexNoIndex) { in FindNextInstructionFollowingException()
1035 found_dex_pc, exception); in FindNextInstructionFollowingException()
1039 return Instruction::At(insns + found_dex_pc); in FindNextInstructionFollowingException()