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

  /art/runtime/
quick_exception_handler.cc 109 uint32_t found_dex_pc = method->FindCatchBlock(to_find, dex_pc, &clear_exception); local
111 if (found_dex_pc != DexFile::kDexNoIndex) {
113 exception_handler_->SetHandlerDexPc(found_dex_pc);
116 method, found_dex_pc, /* is_catch_handler */ true));
art_method.cc 273 uint32_t found_dex_pc = DexFile::kDexNoIndex; local
279 found_dex_pc = it.GetHandlerAddress();
295 found_dex_pc = it.GetHandlerAddress();
299 if (found_dex_pc != DexFile::kDexNoIndex) {
301 Instruction::At(&code_item->insns_[found_dex_pc]);
308 return found_dex_pc;
    [all...]
debugger.cc 2988 uint32_t found_dex_pc; local
    [all...]
  /art/runtime/interpreter/mterp/
mterp.cc 494 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, *shadow_frame, local
497 if (found_dex_pc == DexFile::kDexNoIndex) {
501 shadow_frame->SetDexPC(found_dex_pc);
    [all...]
  /art/runtime/interpreter/
interpreter.cc 525 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, *shadow_frame, dex_pc, local
527 new_dex_pc = found_dex_pc; // the dex pc of a matching catch handler
interpreter_common.cc 412 uint32_t found_dex_pc = shadow_frame.GetMethod()->FindCatchBlock( local
414 if (found_dex_pc == DexFile::kDexNoIndex && instrumentation != nullptr) {
420 // Exception is caught in the current method. We will jump to the found_dex_pc.
425 return found_dex_pc;
    [all...]
interpreter_switch_impl.cc 33 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, shadow_frame, \
36 if (found_dex_pc == DexFile::kDexNoIndex) { \
45 int32_t displacement = static_cast<int32_t>(found_dex_pc) - static_cast<int32_t>(dex_pc); \
    [all...]

Completed in 162 milliseconds