HomeSort by relevance Sort by last modified time
    Searched refs:found_dex_pc (Results 1 - 8 of 8) sorted by null

  /art/runtime/
art_method.cc 195 uint32_t found_dex_pc = DexFile::kDexNoIndex; local
202 found_dex_pc = it.GetHandlerAddress();
220 found_dex_pc = it.GetHandlerAddress();
224 if (found_dex_pc != DexFile::kDexNoIndex) {
226 Instruction::At(&code_item->insns_[found_dex_pc]);
233 return found_dex_pc;
quick_exception_handler.cc 107 uint32_t found_dex_pc = method->FindCatchBlock(to_find, dex_pc, &clear_exception); local
109 if (found_dex_pc != DexFile::kDexNoIndex) {
111 exception_handler_->SetHandlerDexPc(found_dex_pc);
114 method, found_dex_pc, /* is_catch_handler */ true));
debugger.cc 2937 uint32_t found_dex_pc; local
    [all...]
  /art/runtime/interpreter/mterp/
mterp.cc 422 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, *shadow_frame, local
425 if (found_dex_pc == DexFile::kDexNoIndex) {
429 shadow_frame->SetDexPC(found_dex_pc);
  /art/runtime/interpreter/
interpreter_common.cc 436 uint32_t found_dex_pc = shadow_frame.GetMethod()->FindCatchBlock( local
438 if (found_dex_pc == DexFile::kDexNoIndex && instrumentation != nullptr) {
444 // Exception is caught in the current method. We will jump to the found_dex_pc.
449 return found_dex_pc;
    [all...]
interpreter.cc 542 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, *shadow_frame, dex_pc, local
544 new_dex_pc = found_dex_pc; // the dex pc of a matching catch handler
interpreter_goto_table_impl.cc 2582 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, shadow_frame, dex_pc, local
    [all...]
interpreter_switch_impl.cc 32 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, shadow_frame, \
35 if (found_dex_pc == DexFile::kDexNoIndex) { \
44 int32_t displacement = static_cast<int32_t>(found_dex_pc) - static_cast<int32_t>(dex_pc); \
    [all...]

Completed in 371 milliseconds