Searched defs:found_dex_pc (Results 1 - 3 of 3) sorted by relevance

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

Completed in 163 milliseconds