Searched refs:ProtectionDomainCacheEntry (Results 1 - 5 of 5) sorted by relevance

/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/memory/
H A DProtectionDomainEntry.java61 ProtectionDomainCacheEntry pd_cache = (ProtectionDomainCacheEntry)
62 VMObjectFactory.newObject(ProtectionDomainCacheEntry.class, pdCacheField.getValue(addr));
H A DProtectionDomainCacheEntry.java33 public class ProtectionDomainCacheEntry extends VMObject { class in inherits:VMObject
45 Type type = db.lookupType("ProtectionDomainCacheEntry");
49 public ProtectionDomainCacheEntry(Address addr) { method in class:ProtectionDomainCacheEntry
/openjdk9/hotspot/src/share/vm/classfile/
H A Ddictionary.hpp37 class ProtectionDomainCacheEntry;
131 ProtectionDomainCacheEntry* cache_get(oop protection_domain);
142 class ProtectionDomainCacheEntry : public HashtableEntry<oop, mtClass> { class in inherits:HashtableEntry
156 ProtectionDomainCacheEntry* next() {
157 return (ProtectionDomainCacheEntry*)HashtableEntry<oop, mtClass>::next();
160 ProtectionDomainCacheEntry** next_addr() {
161 return (ProtectionDomainCacheEntry**)HashtableEntry<oop, mtClass>::next_addr();
188 ProtectionDomainCacheEntry* bucket(int i) {
189 return (ProtectionDomainCacheEntry*) Hashtable<oop, mtClass>::bucket(i);
193 ProtectionDomainCacheEntry** bucket_add
[all...]
H A Ddictionary.cpp64 ProtectionDomainCacheEntry* Dictionary::cache_get(oop protection_domain) {
129 ProtectionDomainCacheEntry* entry = dict->cache_get(protection_domain);
517 : Hashtable<oop, mtClass>(table_size, sizeof(ProtectionDomainCacheEntry))
524 ProtectionDomainCacheEntry** p = bucket_addr(i);
525 ProtectionDomainCacheEntry* entry = bucket(i);
540 for (ProtectionDomainCacheEntry* probe = bucket(index);
550 for (ProtectionDomainCacheEntry* probe = bucket(index);
566 return sizeof(ProtectionDomainCacheEntry);
574 for (ProtectionDomainCacheEntry* probe = bucket(index);
582 void ProtectionDomainCacheEntry
[all...]
/openjdk9/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp697 nonstatic_field(ProtectionDomainEntry, _pd_cache, ProtectionDomainCacheEntry*) \
700 /* ProtectionDomainCacheEntry */ \
703 nonstatic_field(ProtectionDomainCacheEntry, _literal, oop) \
1620 declare_toplevel_type(ProtectionDomainCacheEntry) \

Completed in 110 milliseconds