Searched defs:protectionDomain (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/test/java/lang/instrument/
H A DSimpleIdentityTransformer.java54 ProtectionDomain protectionDomain,
50 transform( ClassLoader loader, String className, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) argument
H A DNativeMethodPrefixAgent.java59 ProtectionDomain protectionDomain,
55 transform( ClassLoader loader, String className, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) argument
H A DParallelTransformerLoaderAgent.java77 ProtectionDomain protectionDomain,
74 transform( ClassLoader loader, String className, Class classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) argument
H A DATransformerManagementTestCase.java272 ProtectionDomain protectionDomain,
281 protectionDomain,
268 transform( ClassLoader loader, String className, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) argument
H A DRetransformAgent.java72 ProtectionDomain protectionDomain,
69 transform(ClassLoader loader, String className, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) argument
/openjdk7/jdk/src/share/classes/java/lang/instrument/
H A DClassFileTransformer.java173 * @param protectionDomain the protection domain of the class being defined or redefined
185 ProtectionDomain protectionDomain,
182 transform( ClassLoader loader, String className, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DProtectionDomainEntry.java60 public Oop protectionDomain() { method in class:ProtectionDomainEntry
H A DDictionary.java89 public Klass find(int index, long hash, Symbol className, Oop classLoader, Oop protectionDomain) { argument
91 if (entry != null && entry.isValidProtectionDomain(protectionDomain)) {
H A DDictionaryEntry.java84 public boolean isValidProtectionDomain(Oop protectionDomain) { argument
85 if (protectionDomain == null) {
88 return containsProtectionDomain(protectionDomain);
92 public boolean containsProtectionDomain(Oop protectionDomain) { argument
94 if (protectionDomain.equals(ik.getProtectionDomain())) {
99 if (protectionDomain.equals(current.protectionDomain())) {
H A DSystemDictionary.java148 public Klass find(String className, Oop classLoader, Oop protectionDomain) { argument
151 return find(sym, classLoader, protectionDomain);
155 public Klass find(Symbol className, Oop classLoader, Oop protectionDomain) { argument
159 return dict.find(index, hash, className, classLoader, protectionDomain);
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DNoCallStackClassLoader.java84 ProtectionDomain protectionDomain) {
86 referencedClassNames, referencedClassLoader, protectionDomain);
93 ProtectionDomain protectionDomain) {
99 || referencedClassNames == null || protectionDomain == null)
114 this.protectionDomain = protectionDomain;
126 byteCodes[i].length, protectionDomain);
148 private final ProtectionDomain protectionDomain; field in class:NoCallStackClassLoader
80 NoCallStackClassLoader(String className, byte[] byteCode, String[] referencedClassNames, ClassLoader referencedClassLoader, ProtectionDomain protectionDomain) argument
89 NoCallStackClassLoader(String[] classNames, byte[][] byteCodes, String[] referencedClassNames, ClassLoader referencedClassLoader, ProtectionDomain protectionDomain) argument
/openjdk7/jdk/test/com/sun/tools/attach/
H A DRedefineAgent.java54 ProtectionDomain protectionDomain,
51 transform(ClassLoader loader, String className, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) argument
/openjdk7/jdk/src/share/classes/sun/instrument/
H A DTransformerManager.java173 ProtectionDomain protectionDomain,
191 protectionDomain,
170 transform( ClassLoader loader, String classname, Class classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) argument
H A DInstrumentationImpl.java415 ProtectionDomain protectionDomain,
427 protectionDomain,
412 transform( ClassLoader loader, String classname, Class classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer, boolean isRetransformer) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaClass.java56 private JavaThing protectionDomain; field in class:JavaClass
88 this.protectionDomain = new JavaObjectRef(protDomainId);
126 protectionDomain = protectionDomain.dereference(snapshot, null);
294 return protectionDomain;
/openjdk7/jdk/src/share/instrument/
H A DInvocationAdapter.c481 jobject protectionDomain,
498 protectionDomain,
476 eventHandlerClassFileLoadHook( jvmtiEnv * jvmtienv, JNIEnv * jnienv, jclass class_being_redefined, jobject loader, const char* name, jobject protectionDomain, jint class_data_len, const unsigned char* class_data, jint* new_class_data_len, unsigned char** new_class_data) argument
H A DJPLISAgent.c783 jobject protectionDomain,
840 protectionDomain,
778 transformClassFile( JPLISAgent * agent, JNIEnv * jnienv, jobject loaderObject, const char* name, jclass classBeingRedefined, jobject protectionDomain, jint class_data_len, const unsigned char* class_data, jint* new_class_data_len, unsigned char** new_class_data, jboolean is_retransformer) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DInstanceKlass.java75 protectionDomain = new OopField(type.getOopField("_protection_domain"), Oop.getHeaderSize());
133 private static OopField protectionDomain; field in class:InstanceKlass
342 public Oop getProtectionDomain() { return protectionDomain.getValue(this); }
547 visitor.doOop(protectionDomain, true);
/openjdk7/jdk/src/share/classes/java/lang/
H A DClassLoader.java759 * @param protectionDomain
783 ProtectionDomain protectionDomain)
786 protectionDomain = preDefineClass(name, protectionDomain);
789 String source = defineClassSourceLocation(protectionDomain);
792 c = defineClass1(name, b, off, len, protectionDomain, source);
794 c = defineTransformedClass(name, b, off, len, protectionDomain, cfe,
798 postDefineClass(c, protectionDomain);
841 * @param protectionDomain
865 ProtectionDomain protectionDomain)
782 defineClass(String name, byte[] b, int off, int len, ProtectionDomain protectionDomain) argument
864 defineClass(String name, java.nio.ByteBuffer b, ProtectionDomain protectionDomain) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUnsafe.java822 ProtectionDomain protectionDomain);
820 defineClass(String name, byte[] b, int off, int len, ClassLoader loader, ProtectionDomain protectionDomain) argument
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DDataTransferer.java1464 private boolean isForbiddenToRead (File file, ProtectionDomain protectionDomain) argument
1466 if (null == protectionDomain) {
1472 if (protectionDomain.implies(filePermission)) {

Completed in 119 milliseconds