Searched defs:debug (Results 1 - 25 of 42) sorted by relevance

12

/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DPKIXMasterCertPathValidator.java50 private static final Debug debug = Debug.getInstance("certpath"); field in class:PKIXMasterCertPathValidator
76 if (debug != null) {
77 debug.println("--------------------------------------------------"
79 debug.println("Executing PKIX certification path validation "
94 if (debug != null) {
95 debug.println("Checking cert" + (i+1) + " - Subject: " +
104 if (debug != null && !unresCritExts.isEmpty()) {
109 debug.println("Set of critical extensions: " +
116 if (debug != null) {
117 debug
[all...]
H A DOCSPRequest.java79 private static final Debug debug = Debug.getInstance("certpath"); field in class:OCSPRequest
80 private static final boolean dump = debug != null && Debug.isOn("ocsp");
142 debug.println("OCSPRequest bytes...\n\n" +
H A DPKIXCertPathValidator.java48 private static final Debug debug = Debug.getInstance("certpath"); field in class:PKIXCertPathValidator
85 if (debug != null)
86 debug.println("PKIXCertPathValidator.engineValidate()...");
120 if (debug != null) {
121 debug.println("NO - don't try this trustedCert");
126 if (debug != null) {
127 debug.println("YES - try this trustedCert");
128 debug.println("anchor.getTrustedCert()."
133 if (debug != null) {
134 debug
[all...]
H A DSunCertPathBuilderResult.java39 * by the algorithm. It also contains the trust anchor and debug information
52 private static final Debug debug = Debug.getInstance("certpath"); field in class:SunCertPathBuilderResult
65 * @param adjList an Adjacency list containing debug information
H A DForwardState.java56 private static final Debug debug = Debug.getInstance("certpath"); field in class:ForwardState
209 if (debug != null) {
210 debug.println("ForwardState.updateState() unexpected "
H A DKeyChecker.java47 private static final Debug debug = Debug.getInstance("certpath"); field in class:KeyChecker
144 if (debug != null) {
145 debug.println("KeyChecker.verifyCAKeyUsage() ---checking " + msg
164 if (debug != null) {
165 debug.println("KeyChecker.verifyCAKeyUsage() " + msg
H A DVertex.java51 private static final Debug debug = Debug.getInstance("certpath"); field in class:Vertex
141 if (debug != null) {
142 debug.println("Vertex.certToString() unexpected exception");
188 if (debug != null) {
189 debug.println("Vertex.certToString() unexpected exception");
H A DAdaptableX509CertSelector.java52 private static final Debug debug = Debug.getInstance("certpath"); field in class:AdaptableX509CertSelector
217 if (debug != null) {
218 debug.println("AdaptableX509CertSelector.match: "
228 if (debug != null) {
229 debug.println("AdaptableX509CertSelector.match: "
237 if (debug != null) {
238 debug.println("AdaptableX509CertSelector.match: "
H A DAlgorithmChecker.java73 private static final Debug debug = Debug.getInstance("certpath"); field in class:AlgorithmChecker
151 if (trustedMatch && debug != null) {
152 debug.println("trustedMatch = true");
169 if (debug != null) {
170 debug.println("AlgorithmChecker.contains: " + cert.getSigAlgName());
376 if (trustedMatch && debug != null) {
377 debug.println("trustedMatch = true");
H A DCertId.java60 private static final boolean debug = false; field in class:CertId
104 if (debug) {
166 if (debug) {
H A DConstraintsChecker.java55 private static final Debug debug = Debug.getInstance("certpath"); field in class:ConstraintsChecker
138 if (debug != null) {
139 debug.println("---checking " + msg + "...");
147 if (debug != null) {
148 debug.println("prevNC = " + prevNC +
165 if (debug != null)
166 debug.println(msg + " verified.");
186 if (debug != null) {
187 debug.println("prevNC = " + prevNC +
194 if (debug !
[all...]
H A DBasicChecker.java62 private static final Debug debug = Debug.getInstance("certpath"); field in class:BasicChecker
162 if (debug != null)
163 debug.println("---checking " + msg + "...");
179 if (debug != null)
180 debug.println(msg + " verified.");
190 if (debug != null)
191 debug.println("---checking " + msg + ":" + date.toString() + "...");
203 if (debug != null)
204 debug.println(msg + " verified.");
216 if (debug !
[all...]
H A DBuilder.java56 private static final Debug debug = Debug.getInstance("certpath"); field in class:Builder
148 if (debug != null) {
149 debug.println("Builder.distance(): Names are different types");
153 if (debug != null) {
154 debug.println("Builder.distance(): Names are same type but " +
195 if (debug != null) {
196 debug.println("Builder.hops(): Names are different types");
217 if (debug != null) {
218 debug.println("Builder.hops(): hopDistance not implemented " +
227 if (debug !
[all...]
H A DDistributionPointFetcher.java54 private static final Debug debug = Debug.getInstance("certpath"); field in class:DistributionPointFetcher
103 if (debug != null) {
104 debug.println("DistributionPointFetcher.getCRLs: Checking "
110 if (debug != null) {
111 debug.println("No CRLDP ext");
126 if (debug != null) {
127 debug.println("Returning " + results.size() + " CRLs");
216 if (debug != null) {
217 debug.println("Exception verifying CRL: " + e.getMessage());
230 if (debug !
[all...]
H A DForwardBuilder.java65 private static final Debug debug = Debug.getInstance("certpath"); field in class:ForwardBuilder
113 if (debug != null) {
114 debug.println("ForwardBuilder.getMatchingCerts()...");
148 if (debug != null) {
149 debug.println("ForwardBuilder.getMatchingEECerts()...");
192 if (debug != null) {
193 debug.println("ForwardBuilder.getMatchingCACerts()...");
212 if (debug != null) {
213 debug.println("ForwardBuilder.getMatchingCACerts(): " +
287 if (debug !
[all...]
/libcore/ojluni/src/main/java/sun/security/util/
H A DAnchorCertificates.java45 private static final Debug debug = Debug.getInstance("certpath"); field in class:AnchorCertificates
74 if (debug != null) {
75 debug.println("Error parsing cacerts");
93 if (result && debug != null) {
94 debug.println("AnchorCertificate.contains: matched " +
H A DManifestEntryVerifier.java45 private static final Debug debug = Debug.getInstance("jar"); field in class:ManifestEntryVerifier
209 if (debug != null) {
210 debug.println("Manifest Entry: " +
212 debug.println(" manifest " + toHex(manHash));
213 debug.println(" computed " + toHex(theHash));
214 debug.println();
/libcore/ojluni/src/main/java/java/security/
H A DSecureClassLoader.java55 private static final Debug debug = Debug.getInstance("scl"); field in class:SecureClassLoader
209 if (debug != null) {
210 debug.println(" getPermissions "+ pd);
211 debug.println("");
H A DKeyFactory.java121 private static final Debug debug = field in class:KeyFactory
/libcore/luni/src/main/java/javax/xml/datatype/
H A DFactoryFinder.java48 private static boolean debug = false; field in class:FactoryFinder
63 if (debug) debugPrintln("Read properties file " + f);
67 if (debug) {
85 String val = System.getProperty("jaxp.debug");
86 // Allow simply setting the prop to turn on debug
87 debug = val != null && (! "false".equals(val));
98 if (debug) {
121 if (debug) debugPrintln(
129 if (debug) debugPrintln(
160 if (debug) {
[all...]
/libcore/luni/src/main/java/javax/xml/validation/
H A DSchemaFactoryFinder.java48 /** debug support code. */
49 private static boolean debug = false; field in class:SchemaFactoryFinder
64 if (debug) debugPrintln("Read properties file " + f);
68 if (debug) {
82 String val = System.getProperty("jaxp.debug");
83 // Allow simply setting the prop to turn on debug
84 debug = val != null && (! "false".equals(val));
88 * <p>Conditional debug printing.</p>
93 if (debug) {
116 if( debug ) {
[all...]
/libcore/luni/src/main/java/javax/xml/xpath/
H A DXPathFactoryFinder.java44 /** debug support code. */
45 private static boolean debug = false; field in class:XPathFactoryFinder
53 String val = System.getProperty("jaxp.debug");
54 // Allow simply setting the prop to turn on debug
55 debug = val != null && (! "false".equals(val));
71 if (debug) debugPrintln("Read properties file " + f);
75 if (debug) {
84 * <p>Conditional debug printing.</p>
89 if (debug) {
112 if (debug) {
[all...]
/libcore/ojluni/src/main/java/sun/security/x509/
H A DInhibitAnyPolicyExtension.java67 private static final Debug debug = Debug.getInstance("certpath"); field in class:InhibitAnyPolicyExtension
/libcore/ojluni/src/main/java/java/security/cert/
H A DX509CRLSelector.java79 private static final Debug debug = Debug.getInstance("certpath"); field in class:X509CRLSelector
613 if (debug != null) {
614 debug.println("X509CRLSelector.match: issuer DNs "
625 if (debug != null) {
626 debug.println("X509CRLSelector.match: no CRLNumber");
637 if (debug != null) {
638 debug.println("X509CRLSelector.match: exception in "
647 if (debug != null) {
648 debug.println("X509CRLSelector.match: CRLNumber too small");
657 if (debug !
[all...]
/libcore/ojluni/src/main/java/sun/security/jca/
H A DProviderConfig.java45 private final static sun.security.util.Debug debug = field in class:ProviderConfig
178 if (debug != null) {
179 debug.println("Recursion loading provider: " + this);
208 if (debug != null) {
209 debug.println("Loading provider: " + ProviderConfig.this);
227 if (debug != null) {
228 debug.println("Error loading provider " + ProviderConfig.this);
261 if (debug != null) {
262 debug.println("Loaded provider " + obj);
266 if (debug !
[all...]

Completed in 395 milliseconds

12