Searched defs:trusted (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.cpp100 bool trusted = java_lang_ClassLoader::is_trusted_loader(loader); local
105 (!BytecodeVerificationLocal && BytecodeVerificationRemote && !trusted);
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DX509KeySelector.java46 * selector is created as trusted, it only returns public keys of trusted
48 * returns trusted or untrusted public keys (it doesn't care as long
52 * to find a trusted <code>X509Certificate</code> that matches information
63 private boolean trusted = true; field in class:X509KeySelector
66 * Creates a trusted <code>X509KeySelector</code>.
77 X509KeySelector(KeyStore keyStore, boolean trusted) argument
82 this.trusted = trusted;
360 if (!certs.isEmpty() && !trusted) {
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DSocketPermission.java221 private transient boolean trusted; field in class:SocketPermission
591 if (trusted) return false;
610 trusted = true;
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java108 /*trusted*/ MethodTypeForm form() { return form; }
109 /*trusted*/ Class<?> rtype() { return rtype; }
110 /*trusted*/ Class<?>[] ptypes() { return ptypes; }
267 * @param trusted whether the ptypes can be used without cloning
270 /*trusted*/ static
271 MethodType makeImpl(Class<?> rtype, Class<?>[] ptypes, boolean trusted) { argument
273 ptypes = NO_PTYPES; trusted = true;
279 if (!trusted)
1009 // Do not use a trusted path for deserialization:
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyStore.java167 // CKA_TRUSTED - true if cert is trusted
168 private boolean trusted = false; field in class:P11KeyStore.AliasInfo
170 // either end-entity cert or trusted cert depending on 'type'
188 boolean trusted,
193 this.trusted = trusted;
204 sb.append("\ttype=[trusted cert]\n");
212 sb.append("\ttrusted=[" + trusted + "]\n");
374 * then the trusted certificate contained in that entry is returned.
503 * the trusted certificat
186 AliasInfo(String label, byte[] id, boolean trusted, X509Certificate cert) argument
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp3120 bool trusted = java_lang_ClassLoader::is_trusted_loader(loader);
3121 if (trusted) return true;
3131 // if a method in a class in a trusted loader is in a doPrivileged, return NULL
3132 bool trusted = is_trusted_frame(thread, &vfst); variable
3133 if (trusted) return NULL;
3154 // if a method in a class in a trusted loader is in a doPrivileged, return NULL
3155 bool trusted = is_trusted_frame(thread, &vfst); variable
3156 if (trusted) return NULL;
3254 // if a method in a class in a trusted loader is in a doPrivileged, return -1
3255 bool trusted variable
[all...]

Completed in 70 milliseconds