Home
last modified time | relevance | path

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

/system/unwinding/libunwindstack/
DSymbols.cpp62 uint32_t count = RemapIndices ? remap_->size() : count_; in BinarySearch()
68 uint32_t symbol_index = RemapIndices ? remap_.value()[current] : current; in BinarySearch()
94 remap_.emplace(); // Construct the optional remap table. in BuildRemapTable()
95 remap_->reserve(count_); in BuildRemapTable()
112 remap_->push_back(symbol_idx); // Indices of function symbols only. in BuildRemapTable()
118 std::sort(remap_->begin(), remap_->end(), comp); in BuildRemapTable()
121 remap_->erase(std::unique(remap_->begin(), remap_->end(), pred), remap_->end()); in BuildRemapTable()
122 remap_->shrink_to_fit(); in BuildRemapTable()
129 if (!remap_.has_value()) { in GetName()
148 uint32_t symbol_index = remap_.has_value() ? remap_.value()[info->index] : info->index; in GetName()
DSymbols.h54 remap_.reset(); in ClearCache()
71 std::optional<std::vector<uint32_t>> remap_; // Indices of function symbols sorted by address. variable