Searched defs:BinaryKey (Results 1 – 1 of 1) sorted by relevance
85 struct BinaryKey { struct86 std::string path;87 BuildId build_id;88 uint64_t kernel_start_addr = 0;90 BinaryKey() {} in BinaryKey() argument92 BinaryKey(const std::string& path, BuildId build_id) : path(path), build_id(build_id) {} in BinaryKey() function94 BinaryKey(Dso* dso, uint64_t kernel_start_addr) : path(dso->Path()) { in BinaryKey() function101 bool operator==(const BinaryKey& other) const { in operator ==()640 const std::unordered_map<BinaryKey, BranchListBinaryInfo, BinaryKeyHash>& binary_map) { in Write()