Searched defs:match (Results 1 - 17 of 17) sorted by relevance

/libcore/ojluni/src/main/java/java/security/cert/
H A DCRLSelector.java57 boolean match(CRL crl); method in interface:CRLSelector
H A DCertSelector.java58 boolean match(Certificate cert); method in interface:CertSelector
H A DX509CRLSelector.java41 * match all specified criteria. This class is particularly useful when
47 * value (<code>null</code>). Therefore, the {@link #match match} method
90 * so any <code>X509CRL</code> will match.
96 * <code>X509CRL</code> must match at least one of the specified
141 * <code>X509CRL</code> must match at least one of the specified
211 * name in the <code>X509CRL</code> must match at least one of the specified
230 * relied on as it can fail to match some CRLs because of a loss of
235 * name in the <code>X509CRL</code> must match at least one of the specified
252 * name in the <code>X509CRL</code> must match a
596 public boolean match(CRL crl) { method in class:X509CRLSelector
[all...]
H A DX509CertSelector.java44 * match all specified criteria. This class is particularly useful when
51 * getBasicConstraints} method). Therefore, the {@link #match match}
62 * for example) such that the <code>match</code> method
154 * so any <code>X509Certificate</code> will match.
163 * <code>X509Certificate</code> passed to the <code>match</code> method.
167 * match a single certificate. Although other criteria can be specified
171 * @param cert the <code>X509Certificate</code> to match (or
181 * must match the certificate serial number in the
185 * @param serial the certificate serial number to match
2004 public boolean match(Certificate cert) { method in class:X509CertSelector
[all...]
/libcore/luni/src/test/java/tests/security/cert/
H A DCertStoreSpiTest.java81 public boolean match (CRL crl) { method in class:CertStoreSpiTest.tmpCRLSelector
89 public boolean match (Certificate crl) { method in class:CertStoreSpiTest.tmpCertSelector
H A DCertStore2Test.java295 public boolean match(CRL crl) { method in class:CertStore2Test.MyCRLSelector
305 public boolean match(CRL crl) { method in class:CertStore2Test.MyOtherCRLSelector
317 public boolean match(Certificate cert) { method in class:CertStore2Test.MyCertSelector
328 public boolean match(Certificate crl) { method in class:CertStore2Test.MyOtherCertSelector
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DAdaptableX509CertSelector.java97 * the subject criterion before call match().
140 public boolean match(Certificate cert) { method in class:AdaptableX509CertSelector
175 // does not match the replacement root certificate fields.
186 return super.match(cert);
H A DRevocationChecker.java273 if (sel.match(cert)) {
1129 public boolean match(Certificate cert) { method in class:RevocationChecker.RejectKeySelector
1130 if (!super.match(cert))
1135 debug.println("RejectKeySelector.match: bad key");
1140 debug.println("RejectKeySelector.match: returning true");
/libcore/ojluni/src/main/java/sun/security/util/
H A DHostnameChecker.java85 * @exception CertificateException if the name does not match any of
88 public void match(String expectedName, X509Certificate cert) method in class:HostnameChecker
100 public static boolean match(String expectedName, Principal principal) { method in class:HostnameChecker
136 * in the certificate and must exactly match the IP in the URI.
146 // For IP address, it needs to be exact match
171 * the certificate (e.g., more than one dNSName name, a match in any one
190 // but none match, reject
262 * considered to match any single domain name component
294 * E.g. *.bar.com would match a.bar.com, b.bar.com, etc. but not
314 // match res
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DExchanger.java166 * changed, but cannot yet proceed until match is set. In the
169 * the linearization point to be a CAS of the match field (as done
219 * slot CASes, it would also be legal for the write to Node.match
256 * The bound for spins while waiting for a match. The actual
287 volatile Object match; // Item provided by releasing thread field in class:Exchanger.Node
337 q.match = item;
349 Object v = p.match;
365 spins = SPINS; // releaser hasn't set match yet
432 q.match = item;
458 while ((v = p.match)
[all...]
H A DSynchronousQueue.java190 * to match a waiting node.
207 volatile SNode match; // the node matched to this field in class:SynchronousQueue.TransferStack.SNode
225 * Tries to match node s to this node, if so, waking up thread.
229 * @param s the node to match
233 if (match == null &&
242 return match == s;
253 return match == this;
264 (SNode.class.getDeclaredField("match"));
304 * mode, try to push node on stack and wait for a match,
308 * try to push a fulfilling node on to stack, match
[all...]
/libcore/ojluni/src/main/java/sun/misc/
H A DRegexpPool.java124 // delete only if there is an exact match
140 /** Search for a match to a string & return the object associated
141 with it with the match. When multiple regular expressions
142 would match the string, the best match is returned first.
143 The next best match is returned the next time matchNext is
145 @param s The string to match against the regular expressions
153 public Object match(String s) { method in class:RegexpPool
157 /** Identical to match except that it will only find matches to
160 to match() o
[all...]
/libcore/ojluni/src/main/java/sun/net/www/
H A DParseUtil.java451 if (!match(c, lowMask, highMask) && !isEscaped(s, i)) {
486 && match(s.charAt(pos + 1), L_HEX, H_HEX)
487 && match(s.charAt(pos + 2), L_HEX, H_HEX);
519 private static boolean match(char c, long lowMask, long highMask) { method in class:ParseUtil
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ldap/
H A DLDAPCertStore.java432 * match the specified CertSelector.
436 * @param sel a CertSelector that the Certificates must match
462 if (sel.match(cert)) {
529 * containing all Certificates stored in the forward component that match
531 * component that match the reverse CertSelector.
550 // Find Certificates that match and put them in a list
556 if ((cert != null) && forward.match(cert)) {
562 if ((cert != null) && reverse.match(cert)) {
572 * match the specified selector. If no <code>Certificate</code>s
573 * match th
1016 public boolean match(Certificate cert) { method in class:LDAPCertStore.LDAPCertSelector
1077 public boolean match(CRL crl) { method in class:LDAPCertStore.LDAPCRLSelector
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DScanner.java88 * MatchResult result = s.match();
111 * attempt to match the specified pattern with no regard to delimiters in the
391 // Boolean indicating if a match result is available
446 * Fields and an accessor method to match booleans
459 * Fields and methods to match bytes, shorts, ints, and longs
496 * Fields and an accessor method to match line separators
519 * Fields and methods to match floats and doubles
941 // Must look for next delims. Simply attempting to match the
942 // pattern at this point may find a match but it might not be
943 // the first longest match becaus
1308 public MatchResult match() { method in class:Scanner
[all...]
/libcore/ojluni/src/main/native/
H A DNetworkInterface.c258 jboolean match = JNI_FALSE; local
280 match = JNI_TRUE;
300 match = JNI_TRUE;
306 if (match) {
312 if (match) {
319 if (match) {;
/libcore/ojluni/src/main/java/java/net/
H A DURI.java2517 private static boolean match(char c, long lowMask, long highMask) { method in class:URI
2688 if (!match(c, lowMask, highMask)) {
2893 // whether the chars at the start position match s exactly
2981 && match(charAt(p + 1), L_HEX, H_HEX)
2982 && match(charAt(p + 2), L_HEX, H_HEX)) {
2995 // Scan chars that match the given mask pair
3003 if (match(c, lowMask, highMask)) {
3420 if (l > start && !match(charAt(l), L_ALPHA, H_ALPHA)) {

Completed in 440 milliseconds