HomeSort by relevance Sort by last modified time
    Searched full:anchors (Results 1 - 25 of 240) sorted by null

1 2 3 4 5 6 7 8 910

  /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
  /libcore/crypto/src/main/java/org/conscrypt/
TrustedCertificateIndex.java 42 public TrustedCertificateIndex(Set<TrustAnchor> anchors) {
43 index(anchors);
46 private void index(Set<TrustAnchor> anchors) {
47 for (TrustAnchor anchor : anchors) {
68 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject); local
69 if (anchors == null) {
70 anchors = new ArrayList<TrustAnchor>(1);
71 subjectToTrustAnchors.put(subject, anchors);
73 anchors.add(anchor);
83 public void reset(Set<TrustAnchor> anchors) {
93 List<TrustAnchor> anchors = subjectToTrustAnchors.get(issuer); local
119 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject); local
    [all...]
TrustManagerImpl.java 260 // build the cert path from the array of certs sans trust anchors
286 // There's no point in checking trust anchors here, and it will throw off the MD5 check,
287 // so we just hand it the chain without anchors
  /external/chromium_org/chrome/browser/chromeos/policy/
policy_cert_verifier.h 27 // Wraps a MultiThreadedCertVerifier to make it use the additional trust anchors
36 // certificate from the additional trust anchors (set with SetTrustAnchors) is
43 // Sets the additional trust anchors.
policy_cert_verifier_browsertest.cc 83 // trust anchors (i.e. of |test_ca_cert_|) for the first time or since the
170 // The additional trust anchors were not used, since the certificate is
194 // Verify() again with the additional trust anchors.
208 // Verify() again with the additional trust anchors will hit the cache.
219 // Verifying after removing the trust anchors should now fail.
229 // 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 58 << "Additional trust anchors not supported on the current platform!";
  /external/chromium_org/chrome/common/extensions/docs/server2/
link_error_detector.py 15 Page = namedtuple('Page', 'status, links, anchors, anchor_refs')
27 of the anchors on the page (ids and names), and all links that contain an
46 links, anchors = parser.links, parser.anchors
81 return Page(200, edges, anchors, anchor_refs)
92 self.anchors = set()
108 self.anchors.add(attrs['id'])
110 self.anchors.add(attrs['name'])
141 processing the resultant html to pull out all links and anchors.
201 if not fragment in page.anchors
    [all...]
permissions_data_source.py 61 # Turn partial templates into descriptions, ensure anchors are set.
  /external/chromium/chrome/common/extensions/docs/js/
sample_search.js 51 var anchors = document.getElementsByTagName('a');
52 for (var i = 0, anchor; anchor = anchors[i]; i++) {
bootstrap.js 36 // when the browser tries to resolve any #anchors in the URL. So we reset
  /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/chrome/browser/ui/cocoa/
about_window_controller_unittest.mm 64 // Make sure that we removed the "BEGIN_LINK" and "END_LINK" anchors.
  /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: ");

Completed in 1424 milliseconds

1 2 3 4 5 6 7 8 910