Searched defs:DictionaryEntry (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DDictionaryEntry.java34 public class DictionaryEntry extends sun.jvm.hotspot.utilities.HashtableEntry { class in inherits:sun.jvm.hotspot.utilities.HashtableEntry
44 Type type = db.lookupType("DictionaryEntry");
69 public DictionaryEntry(Address addr) { method in class:DictionaryEntry
107 public DictionaryEntry next() {
108 return (DictionaryEntry) super.next();
/openjdk7/hotspot/src/share/vm/classfile/
H A Ddictionary.hpp33 class DictionaryEntry;
45 static DictionaryEntry* _current_class_entry;
47 DictionaryEntry* get_entry(int index, unsigned int hash,
50 DictionaryEntry* bucket(int i) {
51 return (DictionaryEntry*)Hashtable<klassOop, mtClass>::bucket(i);
55 DictionaryEntry** bucket_addr(int i) {
56 return (DictionaryEntry**)Hashtable<klassOop, mtClass>::bucket_addr(i);
59 void add_entry(int index, DictionaryEntry* new_entry) {
68 DictionaryEntry* new_entry(unsigned int hash, klassOop klass, oop loader);
70 DictionaryEntry* new_entr
150 class DictionaryEntry : public HashtableEntry<klassOop, mtClass> { class in inherits:HashtableEntry
[all...]

Completed in 23 milliseconds