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

  /art/runtime/mirror/
art_method.cc 224 uint32_t found_dex_pc = DexFile::kDexNoIndex; local
230 found_dex_pc = it.GetHandlerAddress();
246 found_dex_pc = it.GetHandlerAddress();
250 if (found_dex_pc != DexFile::kDexNoIndex) {
252 Instruction::At(&code_item->insns_[found_dex_pc]);
260 return found_dex_pc;
  /art/runtime/
quick_exception_handler.cc 93 uint32_t found_dex_pc = mirror::ArtMethod::FindCatchBlock(method, to_find, dex_pc, local
96 if (found_dex_pc != DexFile::kDexNoIndex) {
98 exception_handler_->SetHandlerDexPc(found_dex_pc);
99 exception_handler_->SetHandlerQuickFramePc(method->ToNativePc(found_dex_pc));
  /art/runtime/interpreter/
interpreter_common.cc 409 uint32_t found_dex_pc; local
414 found_dex_pc = mirror::ArtMethod::FindCatchBlock(h_method, exception_class, dex_pc,
417 if (found_dex_pc != DexFile::kDexNoIndex) {
419 catch_dex_pc_ = found_dex_pc;
466 uint32_t found_dex_pc; local
470 found_dex_pc = mirror::ArtMethod::FindCatchBlock(h_method, exception_class, dex_pc,
473 if (found_dex_pc == DexFile::kDexNoIndex) {
485 return found_dex_pc;
    [all...]
interpreter.cc 508 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, *shadow_frame, dex_pc, local
510 new_dex_pc = found_dex_pc; // the dex pc of a matching catch handler
interpreter_goto_table_impl.cc 2402 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, shadow_frame, dex_pc, local
    [all...]
interpreter_switch_impl.cc 28 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, shadow_frame, \
31 if (found_dex_pc == DexFile::kDexNoIndex) { \
34 int32_t displacement = static_cast<int32_t>(found_dex_pc) - static_cast<int32_t>(dex_pc); \
    [all...]

Completed in 337 milliseconds