diff -r 68031e660872 -r 9dca61a7df19 src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleWriter.cpp --- a/src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleWriter.cpp Sat Sep 14 13:18:20 2019 +0200 +++ b/src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleWriter.cpp Sun Sep 15 13:41:19 2019 +0200 @@ -146,18 +146,18 @@ FieldInfoTable* _table; const ObjectSampleFieldInfo* _lookup; - void link(FieldInfoEntry* entry) { + void on_link(FieldInfoEntry* entry) { assert(entry != NULL, "invariant"); entry->set_id(++_field_id_counter); } - bool equals(uintptr_t hash, const FieldInfoEntry* entry) { + bool on_equals(uintptr_t hash, const FieldInfoEntry* entry) { assert(hash == entry->hash(), "invariant"); assert(_lookup != NULL, "invariant"); return entry->literal()->_field_modifiers == _lookup->_field_modifiers; } - void unlink(FieldInfoEntry* entry) { + void on_unlink(FieldInfoEntry* entry) { assert(entry != NULL, "invariant"); // nothing }