Home
last modified time | relevance | path

Searched refs:fdes_ (Results 1 – 2 of 2) sorted by relevance

/system/core/libunwindstack/include/unwindstack/
DDwarfSection.h48 section->GetFdes(&fdes_); in iterator()
50 index_ = fdes_.size(); in iterator()
75 if (index_ > fdes_.size()) return nullptr;
76 return fdes_[index_];
80 std::vector<const DwarfFde*> fdes_;
172 std::map<uint64_t, std::pair<uint64_t, const DwarfFde*>> fdes_; variable
/system/core/libunwindstack/
DDwarfSection.cpp638 auto it = fdes_.upper_bound(start); in InsertFde()
639 while (it != fdes_.end() && start < end && it->second.first < end) { in InsertFde()
641 fdes_[it->second.first] = std::make_pair(start, fde); in InsertFde()
647 fdes_[end] = std::make_pair(start, fde); in InsertFde()
780 auto it = fdes_.upper_bound(pc); in GetFdeFromPc()
781 if (it != fdes_.end()) { in GetFdeFromPc()