Searched refs:JvmtiTagHashmapEntry (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.hpp39 class JvmtiTagHashmapEntry;
53 JvmtiTagHashmapEntry* _free_entries; // free list for this environment
76 JvmtiTagHashmapEntry* create_entry(oop ref, jlong tag);
77 void destroy_entry(JvmtiTagHashmapEntry* entry);
H A DjvmtiTagMap.cpp52 // JvmtiTagHashmapEntry
58 class JvmtiTagHashmapEntry : public CHeapObj<mtInternal> { class in inherits:CHeapObj
64 JvmtiTagHashmapEntry* _next; // next on the list
73 JvmtiTagHashmapEntry(oop object, jlong tag) { init(object, tag); } function in class:JvmtiTagHashmapEntry
87 inline JvmtiTagHashmapEntry* next() const { return _next; }
88 inline void set_next(JvmtiTagHashmapEntry* next) { _next = next; }
132 JvmtiTagHashmapEntry** _table; // the table of entries.
152 size_t s = initial_size * sizeof(JvmtiTagHashmapEntry*);
153 _table = (JvmtiTagHashmapEntry**)os::malloc(s, mtInternal);
190 size_t s = new_size * sizeof(JvmtiTagHashmapEntry*);
[all...]

Completed in 48 milliseconds