Searched defs:check (Results 226 - 250 of 496) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_png.c37 png_uint_32 check; local
40 check = stream->read(stream, data, length);
41 if (check != length)
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DAlgorithmChecker.java61 * A <code>PKIXCertPathChecker</code> implementation to check whether a
100 * Note that this constructor will be used to check a certification
168 public void check(Certificate cert, method in class:AlgorithmChecker
173 // ignore the check for non-x.509 certificate or null constraints
201 "Algorithm constraints check failed: " + currSigAlg,
205 // check the key usage and key size
243 "algorithm constraints check failed",
256 "Algorithm constraints check failed: " + currSigAlg,
294 // check the extended key usage, ignore the check no
333 static void check(PublicKey key, X509CRL crl) method in class:AlgorithmChecker
353 static void check(PublicKey key, AlgorithmId algorithmId) method in class:AlgorithmChecker
[all...]
H A DConstraintsChecker.java109 * does not pass the check
111 public void check(Certificate cert, Collection<String> unresCritExts) method in class:ConstraintsChecker
117 // MUST run NC check second, since it depends on BC check to
129 * Internal method to check the name constraints against a cert
139 // check name constraints only if there is a previous name constraint
151 throw new CertPathValidatorException(msg + " check failed",
217 * Internal method to check that a given cert meets basic constraints.
229 /* check if intermediate cert */
257 (msg + " check faile
[all...]
H A DOCSP.java58 * just check the revocation status of a certificate, and you don't want to
72 * used for the OCSP check. A timeout of zero is interpreted as
109 public static RevocationStatus check(X509Certificate cert, method in class:OCSP
129 OCSPResponse ocspResponse = check(Collections.singletonList(certId),
149 public static RevocationStatus check(X509Certificate cert, method in class:OCSP
154 return check(cert, issuerCert, responderURI,
173 public static RevocationStatus check(X509Certificate cert, method in class:OCSP
189 OCSPResponse ocspResponse = check(Collections.singletonList(certId),
208 static OCSPResponse check(List<CertId> certIds, URI responderURI, method in class:OCSP
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBinaryAssignExpression.java70 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:BinaryAssignExpression
H A DCatchStatement.java70 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:CatchStatement
96 return body.check(env, ctx, vset, exp);
H A DCommaExpression.java49 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:CommaExpression
50 vset = left.check(env, ctx, vset, exp);
51 vset = right.check(env, ctx, vset, exp);
H A DCompoundStatement.java73 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:CompoundStatement
H A DConditionalExpression.java110 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ConditionalExpression
113 return left.check(env, ctx, vset.copy(), exp).join(right.check(env, ctx, vset, exp));
165 // We need to check if right is null in case costInline()
H A DDeclarationStatement.java58 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:DeclarationStatement
H A DDoStatement.java56 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:DoStatement
61 vset = body.check(env, newctx, reach(env, vset), exp);
H A DExpressionStatement.java53 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ExpressionStatement
55 return expr.check(env, ctx, reach(env, vset), exp);
H A DFinallyStatement.java71 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:FinallyStatement
102 vset = init.check(env, ctx, vset, exp);
169 Vset vset1 = body.check(env, newctx1, vset.copy(), newexp)
175 Vset vset2 = finalbody.check(env, newctx2, vset, exp);
184 // Add newexp's back into exp; cf. ThrowStatement.check().
H A DForStatement.java60 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ForStatement
80 vset = body.check(env, newctx, cvars.vsTrue, exp);
83 vset = inc.check(env, newctx, vset, exp);
H A DIfStatement.java58 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:IfStatement
68 // check on the child anyway.'
89 vsTrue = ifTrue.check(env, newctx, vsTrue, exp);
91 vsFalse = ifFalse.check(env, newctx, vsFalse, exp);
H A DIncDecExpression.java69 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:IncDecExpression
H A DReturnStatement.java54 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ReturnStatement
H A DSwitchStatement.java57 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:SwitchStatement
76 vs = s.check(env, newctx, vs.join(vset.copy()), exp);
109 // fields. When we check the case label, the
116 // the expression isn't constant, do a check to
H A DSynchronizedStatement.java59 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:SynchronizedStatement
68 vset = body.check(env, newctx, vset, exp);
H A DThrowStatement.java53 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ThrowStatement
H A DTryStatement.java60 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:TryStatement
69 Vset vs = body.check(env, newctx, vset.copy(), newexp);
82 vs = vs.join(args[i].check(env, newctx, cvs.copy(), exp));
H A DWhileStatement.java56 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:WhileStatement
61 // check the condition. Determine which variables have values if
66 // check the body, given that the condition returned true.
67 vset = body.check(env, newctx, cvars.vsTrue, exp);
/openjdk7/jdk/test/java/util/AbstractMap/
H A DSimpleEntries.java50 check(! e.equals(new SimpleEntry<String,Long>(k,v2)));
51 check(! e.equals(null));
88 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:SimpleEntries
/openjdk7/jdk/test/java/util/ArrayList/
H A DBug6533203.java51 void check(boolean cond) {if (cond) pass(); else fail();} method in class:Bug6533203
/openjdk7/jdk/test/java/util/BitSet/
H A DImportExport.java38 check(Arrays.equals(x, y));
42 check(Arrays.equals(x, y));
58 check(s.isEmpty());
92 check(expected[expected.length-1] != 0);
145 void check(boolean cond) {if (cond) pass(); else fail();} method in class:ImportExport

Completed in 103 milliseconds

1234567891011>>