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

  /art/compiler/optimizing/
block_builder.cc 48 const DexFile::TryItem* try_item = DexFile::GetTryItems(code_item_, idx); local
49 uint32_t dex_pc_start = try_item->start_addr_;
50 uint32_t dex_pc_end = dex_pc_start + try_item->insn_count_;
198 // Iterates over the exception handlers of `try_item`, finds the corresponding
204 const DexFile::TryItem* try_item,
206 for (CatchHandlerIterator it(code_item, *try_item); it.HasNext(); it.Next()) {
  /art/runtime/
dex_file.cc 952 int32_t try_item = FindTryItem(code_item, address); local
    [all...]
  /art/dexlayout/
dex_ir.cc 641 TryItem* try_item = new TryItem(start_addr, insn_count, handlers); local
642 tries->push_back(std::unique_ptr<const TryItem>(try_item));
    [all...]
dexlayout.cc 807 const dex_ir::TryItem* try_item = (*tries)[i].get(); local
808 const uint32_t start = try_item->StartAddr();
809 const uint32_t end = start + try_item->InsnCount();
811 for (auto& handler : *try_item->GetHandlers()->GetHandlers()) {
    [all...]
  /art/runtime/verifier/
method_verifier.cc 1048 const DexFile::TryItem* try_item = &tries[idx]; local
    [all...]

Completed in 470 milliseconds