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

/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/memory/
H A DProtectionDomainEntry.java33 public class ProtectionDomainEntry extends VMObject { class in inherits:VMObject
46 Type type = db.lookupType("ProtectionDomainEntry");
52 public ProtectionDomainEntry(Address addr) { method in class:ProtectionDomainEntry
56 public ProtectionDomainEntry next() {
57 return (ProtectionDomainEntry) VMObjectFactory.newObject(ProtectionDomainEntry.class, nextField.getValue(addr));
H A DDictionaryEntry.java56 public ProtectionDomainEntry pdSet() {
58 return (ProtectionDomainEntry) VMObjectFactory.newObject(
59 ProtectionDomainEntry.class, tmp);
103 for (ProtectionDomainEntry current = pdSet(); current != null;
/openjdk9/hotspot/src/share/vm/classfile/
H A Ddictionary.hpp230 class ProtectionDomainEntry :public CHeapObj<mtClass> { class in inherits:CHeapObj
233 ProtectionDomainEntry* _next;
236 ProtectionDomainEntry(ProtectionDomainCacheEntry* pd_cache, ProtectionDomainEntry* next) { function in class:ProtectionDomainEntry
241 ProtectionDomainEntry* next() { return _next; }
271 ProtectionDomainEntry* _pd_set;
294 ProtectionDomainEntry* pd_set() const { return _pd_set; }
295 void set_pd_set(ProtectionDomainEntry* pd_set) { _pd_set = pd_set; }
310 for (ProtectionDomainEntry* current = _pd_set;
318 for (ProtectionDomainEntry* curren
[all...]
H A Ddictionary.cpp84 ProtectionDomainEntry* to_delete = entry->pd_set();
97 for (ProtectionDomainEntry* current = _pd_set;
117 for (ProtectionDomainEntry* current = _pd_set;
130 ProtectionDomainEntry* new_head =
131 new ProtectionDomainEntry(entry, _pd_set);
133 // without locks. The new ProtectionDomainEntry must be
/openjdk9/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp686 nonstatic_field(DictionaryEntry, _pd_set, ProtectionDomainEntry*) \
693 /* ProtectionDomainEntry */ \
696 nonstatic_field(ProtectionDomainEntry, _next, ProtectionDomainEntry*) \
697 nonstatic_field(ProtectionDomainEntry, _pd_cache, ProtectionDomainCacheEntry*) \
1619 declare_toplevel_type(ProtectionDomainEntry) \

Completed in 162 milliseconds