diff -r 68031e660872 -r 9dca61a7df19 src/hotspot/share/jfr/leakprofiler/chains/edgeStore.cpp --- a/src/hotspot/share/jfr/leakprofiler/chains/edgeStore.cpp Sat Sep 14 13:18:20 2019 +0200 +++ b/src/hotspot/share/jfr/leakprofiler/chains/edgeStore.cpp Sun Sep 15 13:41:19 2019 +0200 @@ -55,19 +55,19 @@ return !_edges->has_entries(); } -void EdgeStore::link(EdgeEntry* entry) { +void EdgeStore::on_link(EdgeEntry* entry) { assert(entry != NULL, "invariant"); assert(entry->id() == 0, "invariant"); entry->set_id(++_edge_id_counter); } -bool EdgeStore::equals(uintptr_t hash, const EdgeEntry* entry) { +bool EdgeStore::on_equals(uintptr_t hash, const EdgeEntry* entry) { assert(entry != NULL, "invariant"); assert(entry->hash() == hash, "invariant"); return true; } -void EdgeStore::unlink(EdgeEntry* entry) { +void EdgeStore::on_unlink(EdgeEntry* entry) { assert(entry != NULL, "invariant"); // nothing }