src/hotspot/share/classfile/dictionary.hpp
changeset 51268 4ac20e5f96ce
parent 49818 e57e6addb978
child 51530 1f0b605bdc28
equal deleted inserted replaced
51267:2cd8bbccbd2d 51268:4ac20e5f96ce
   180 
   180 
   181   void verify_protection_domain_set() {
   181   void verify_protection_domain_set() {
   182     for (ProtectionDomainEntry* current = pd_set(); // accessed at a safepoint
   182     for (ProtectionDomainEntry* current = pd_set(); // accessed at a safepoint
   183                                 current != NULL;
   183                                 current != NULL;
   184                                 current = current->_next) {
   184                                 current = current->_next) {
   185       current->_pd_cache->object_no_keepalive()->verify();
   185       oopDesc::verify(current->_pd_cache->object_no_keepalive());
   186     }
   186     }
   187   }
   187   }
   188 
   188 
   189   bool equals(const Symbol* class_name) const {
   189   bool equals(const Symbol* class_name) const {
   190     InstanceKlass* klass = (InstanceKlass*)literal();
   190     InstanceKlass* klass = (InstanceKlass*)literal();