HomeSort by relevance Sort by last modified time
    Searched defs:try_item (Results 1 - 5 of 5) sorted by null

  /art/libdexfile/dex/
dex_file_exception_helpers.cc 44 const dex::TryItem* try_item = accessor.FindTryItem(address); local
45 offset = try_item != nullptr ? try_item->handler_off_ : -1;
53 const dex::TryItem& try_item) {
55 Init(accessor, try_item.handler_off_);
  /art/compiler/optimizing/
block_builder.cc 71 for (const dex::TryItem& try_item : code_item_accessor_.TryItems()) {
72 uint32_t dex_pc_start = try_item.start_addr_;
73 uint32_t dex_pc_end = dex_pc_start + try_item.insn_count_;
232 // Iterates over the exception handlers of `try_item`, finds the corresponding
238 const dex::TryItem* try_item,
240 for (CatchHandlerIterator it(accessor.GetCatchHandlerData(try_item->handler_off_));
298 const dex::TryItem* try_item = code_item_accessor_.FindTryItem(block->GetDexPc()); local
299 if (try_item != nullptr) {
301 try_block_info.Put(block->GetBlockId(), try_item);
359 const dex::TryItem* try_item = entry.second local
378 const dex::TryItem* try_item = entry.second; local
    [all...]
  /art/dexlayout/
dex_ir_builder.cc 854 TryItem* try_item = new TryItem(start_addr, insn_count, handlers); local
    [all...]
dexlayout.cc 796 const dex_ir::TryItem* try_item = (*tries)[i].get(); local
797 const uint32_t start = try_item->StartAddr();
798 const uint32_t end = start + try_item->InsnCount();
800 for (auto& handler : *try_item->GetHandlers()->GetHandlers()) {
    [all...]
  /art/runtime/verifier/
method_verifier.cc 3583 const dex::TryItem* try_item = code_item_accessor_.FindTryItem(work_insn_idx_); local
    [all...]

Completed in 336 milliseconds