Home
last modified time | relevance | path

Searched defs:BinaryKey (Results 1 – 1 of 1) sorted by relevance

/system/extras/simpleperf/
Dcmd_inject.cpp85 struct BinaryKey { struct
86 std::string path;
87 BuildId build_id;
88 uint64_t kernel_start_addr = 0;
90 BinaryKey() {} in BinaryKey() argument
92 BinaryKey(const std::string& path, BuildId build_id) : path(path), build_id(build_id) {} in BinaryKey() function
94 BinaryKey(Dso* dso, uint64_t kernel_start_addr) : path(dso->Path()) { in BinaryKey() function
101 bool operator==(const BinaryKey& other) const { in operator ==()
640 const std::unordered_map<BinaryKey, BranchListBinaryInfo, BinaryKeyHash>& binary_map) { in Write()