Home
last modified time | relevance | path

Searched refs:symbols_ (Results 1 – 6 of 6) sorted by relevance

/system/extras/simpleperf/
Ddso.cpp217 if (!symbols_.empty()) { in FindSymbol()
218 auto it = std::upper_bound(symbols_.begin(), symbols_.end(), in FindSymbol()
221 if (it != symbols_.begin()) { in FindSymbol()
241 return symbols_; in GetSymbols()
245 symbols_ = std::move(*symbols); in SetSymbols()
284 if (!symbols_.empty()) { in Load()
287 dumped_symbols = std::move(symbols_); in Load()
288 symbols_.clear(); in Load()
310 std::sort(symbols_.begin(), symbols_.end(), Symbol::CompareValueByAddr); in Load()
313 symbols_.clear(); in Load()
[all …]
Ddso.h178 std::vector<Symbol> symbols_; variable
/system/core/libunwindstack/
DSymbols.cpp41 size_t last = symbols_.size(); in GetInfoFromCache()
44 const Info* info = &symbols_[current]; in GetInfoFromCache()
61 if (symbols_.size() != 0) { in GetName()
90 symbols_.emplace_back(start_offset, end_offset, str_offset_ + entry.st_name); in GetName()
105 std::sort(symbols_.begin(), symbols_.end(), in GetName()
DSymbols.h54 symbols_.clear(); in ClearCache()
66 std::vector<Info> symbols_; variable
DElfInterface.cpp43 for (auto symbol : symbols_) { in ~ElfInterface()
350 symbols_.push_back(new Symbols(shdr.sh_offset, shdr.sh_size, shdr.sh_entsize, in ReadSectionHeaders()
446 if (symbols_.empty()) { in GetFunctionNameWithTemplate()
450 for (const auto symbol : symbols_) { in GetFunctionNameWithTemplate()
460 if (symbols_.empty()) { in GetGlobalVariableWithTemplate()
464 for (const auto symbol : symbols_) { in GetGlobalVariableWithTemplate()
/system/core/libunwindstack/include/unwindstack/
DElfInterface.h159 std::vector<Symbols*> symbols_; variable