/external/chromium_org/net/cert/ |
cert_trust_anchor_provider.h | 18 // Interface to retrieve the current list of additional trust anchors. 19 // This is used by CertVerifier to get a list of anchors to trust in addition to 20 // the anchors known to the CertVerifier. 25 // Returns a list of certificates to be used as trust anchors during 27 // or pre-configured trust anchors.
|
cert_verify_proc.h | 55 // building a certificate chain, in addition to the anchors known to the 65 // anchors to the Verify() call. The |additional_trust_anchors| parameter
|
cert_verify_result.h | 63 // verification came from the list of additional trust anchors.
|
cert_verifier.h | 61 // for certificates issued by non-public trust anchors. Failure to check 64 // that chain to local trust anchors will likely fail - for example, due to
|
multi_threaded_cert_verifier_unittest.cc | 424 // additional trust anchors. 465 // trust anchors will not reuse the cache.
|
multi_threaded_cert_verifier.h | 47 // trust anchors during verification, provided that the underlying
|
/external/conscrypt/src/platform/java/org/conscrypt/ |
TrustedCertificateIndex.java | 41 public TrustedCertificateIndex(Set<TrustAnchor> anchors) { 42 index(anchors); 45 private void index(Set<TrustAnchor> anchors) { 46 for (TrustAnchor anchor : anchors) { 67 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject); local 68 if (anchors == null) { 69 anchors = new ArrayList<TrustAnchor>(1); 70 subjectToTrustAnchors.put(subject, anchors); 72 anchors.add(anchor); 82 public void reset(Set<TrustAnchor> anchors) { 92 List<TrustAnchor> anchors = subjectToTrustAnchors.get(issuer); local 118 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject); local [all...] |
TrustManagerImpl.java | 296 // build the cert path from the array of certs sans trust anchors 322 // There's no point in checking trust anchors here, and it will throw off the MD5 check, 323 // so we just hand it the chain without anchors
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
policy_cert_verifier.h | 28 // Wraps a MultiThreadedCertVerifier to make it use the additional trust anchors 37 // certificate from the additional trust anchors (set with SetTrustAnchors) is 45 // Sets the additional trust anchors.
|
policy_cert_verifier_browsertest.cc | 85 // trust anchors (i.e. of |test_ca_cert_|) for the first time or since the 172 // The additional trust anchors were not used, since the certificate is 193 // Verify() again with the additional trust anchors. 207 // Verify() again with the additional trust anchors will hit the cache. 218 // Verifying after removing the trust anchors should now fail. 228 // The additional trust anchors were reset, thus |cert_verifier_| should not
|
policy_cert_service.h | 33 // responsible for pushing the current list of trust anchors to the CertVerifier 34 // and marking the profile's prefs if any of the trust anchors was used.
|
policy_cert_service.cc | 59 // Set the current list of trust anchors.
|
policy_cert_verifier.cc | 57 << "Additional trust anchors not supported on the current platform!";
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
link_error_detector.py | 16 Page = namedtuple('Page', 'status, links, anchors, anchor_refs') 28 of the anchors on the page (ids and names), and all links that contain an 47 links, anchors = parser.links, parser.anchors 82 return Page(200, edges, anchors, anchor_refs) 93 self.anchors = set() 109 self.anchors.add(attrs['id']) 111 self.anchors.add(attrs['name']) 143 processing the resultant html to pull out all links and anchors. 203 if not fragment in page.anchors [all...] |
permissions_data_source.py | 61 # Turn partial templates into descriptions, ensure anchors are set.
|
/external/markdown/docs/extensions/ |
Tables_of_Contents.txt | 44 * **slugify**: Callable to generate anchors based on header text. Defaults to a
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/ |
SelectionHandleController.java | 30 /** Whether selection anchors are active. */ 45 /** Automatically show selection anchors when text is selected. */ 50 /** Hide selection anchors, and don't automatically show them. */
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
bug-regex12.c | 42 /* In ERE, all carets must be treated as anchors. */
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
linkjump-2.html | 8 <a href="rdar://4233844">4233844</a> in some cases, HTML href named anchors don't scroll to the right place<br> 9 <a href="rdar://problem/4246096">4246096</a> REGRESSION links to named anchors don't scroll to the right place (4825)
|
/external/llvm/docs/ |
re_format.7 | 436 anchors the regular expression to the beginning of a line. 442 it anchors the regular expression to the end of a line. 445 Anchors the single character regular expression or subexpression 448 Anchors the single character regular expression or subexpression 656 anchors the regular expression to the beginning of a line. 662 it anchors the regular expression to the end of a line. 665 Anchors the single character regular expression or subexpression 668 Anchors the single character regular expression or subexpression
|
/external/bison/examples/ |
extexi | 96 # We have to handle CONTENTS line per line, since anchors in AWK are
|
/external/chromium_org/chrome/common/extensions/docs/templates/articles/ |
app_deprecated.html | 67 <td>You cannot use bookmarklets for inline javascript on anchors.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
GravityHelper.java | 99 String[] anchors = gravityString.split("\\|"); //$NON-NLS-1$ local 100 for (String anchor : anchors) {
|
/libcore/luni/src/main/java/java/security/cert/ |
PKIXParameters.java | 36 * (trust anchors). 42 // Set of trust anchors - most trusted CAs 548 new StringBuilder("[\n Trust Anchors: ");
|
/external/chromium_org/net/ssl/ |
ssl_config.h | 60 // required to succeed when certificates chain to local trust anchors (that
|