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

1 2

  /frameworks/base/core/java/android/security/net/config/
CertificatesEntryRef.java 39 Set<TrustAnchor> anchors = new ArraySet<TrustAnchor>(); local
41 anchors.add(new TrustAnchor(cert, mOverridesPins));
43 return anchors;
KeyStoreCertificateSource.java 98 Set<java.security.cert.TrustAnchor> anchors = mIndex.findAllByIssuerAndSignature(cert); local
99 if (anchors.isEmpty()) {
102 Set<X509Certificate> certs = new ArraySet<X509Certificate>(anchors.size());
103 for (java.security.cert.TrustAnchor anchor : anchors) {
NetworkSecurityTrustManager.java 170 Set<TrustAnchor> anchors = mNetworkSecurityConfig.getTrustAnchors(); local
171 X509Certificate[] issuers = new X509Certificate[anchors.size()];
173 for (TrustAnchor anchor : anchors) {
ResourceCertificateSource.java 63 throw new RuntimeException("Failed to load trust anchors from id " + mResourceId,
108 Set<java.security.cert.TrustAnchor> anchors = mIndex.findAllByIssuerAndSignature(cert); local
109 if (anchors.isEmpty()) {
112 Set<X509Certificate> certs = new ArraySet<X509Certificate>(anchors.size());
113 for (java.security.cert.TrustAnchor anchor : anchors) {
NetworkSecurityConfig.java 77 // Merge trust anchors based on the X509Certificate.
80 // Because mCertificatesEntryRefs is sorted with all overridesPins anchors coming first
84 Set<TrustAnchor> anchors = ref.getTrustAnchors(); local
85 for (TrustAnchor anchor : anchors) {
92 ArraySet<TrustAnchor> anchors = new ArraySet<TrustAnchor>(anchorMap.size()); local
93 anchors.addAll(anchorMap.values());
94 mAnchors = anchors;
XmlConfigSource.java 214 List<CertificatesEntryRef> anchors = new ArrayList<>(); local
218 anchors.add(parseCertificatesEntry(parser, defaultOverridePins));
223 return anchors;
266 } else if ("trust-anchors".equals(tagName)) {
305 // Don't add trust anchors if not already present, the builder will inherit the anchors
306 // from its parent, and that's where the trust anchors should be added.
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/composer/
Composer.java 51 private final Map<String, Node> anchors; field in class:Composer
57 this.anchors = new HashMap<String, Node>();
125 this.anchors.clear();
135 if (!anchors.containsKey(anchor)) {
139 Node result = anchors.get(anchor);
148 // the check for duplicate anchors has been removed (issue 174)
176 anchors.put(anchor, node);
196 anchors.put(anchor, node);
222 anchors.put(anchor, node);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/serializer/
Serializer.java 59 private Map<Node, String> anchors; field in class:Serializer
74 this.anchors = new HashMap<Node, String>();
115 this.anchors.clear();
122 if (this.anchors.containsKey(node)) {
123 String anchor = this.anchors.get(node);
126 this.anchors.put(node, anchor);
129 this.anchors.put(node, null);
156 String tAlias = this.anchors.get(node);
  /external/conscrypt/src/platform/java/org/conscrypt/
TrustedCertificateIndex.java 44 public TrustedCertificateIndex(Set<TrustAnchor> anchors) {
45 index(anchors);
48 private void index(Set<TrustAnchor> anchors) {
49 for (TrustAnchor anchor : anchors) {
70 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject); local
71 if (anchors == null) {
72 anchors = new ArrayList<TrustAnchor>(1);
73 subjectToTrustAnchors.put(subject, anchors);
77 for (TrustAnchor entry : anchors) {
84 anchors.add(anchor)
104 List<TrustAnchor> anchors = subjectToTrustAnchors.get(issuer); local
130 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject); local
176 List<TrustAnchor> anchors = subjectToTrustAnchors.get(issuer); local
    [all...]
TrustManagerImpl.java 65 * Comparator used for ordering trust anchors during certificate path building.
447 // 2. Try building a chain via any trust anchors that issued the current certificate.
452 Set<TrustAnchor> anchors = findAllTrustAnchorsByIssuerAndSignature(current); local
454 for (TrustAnchor anchor : sortPotentialAnchors(anchors)) {
556 // build the cert path from the list of certs sans trust anchors
561 // Check that there are at least some trust anchors
591 // The chain consists of only trust anchors, skip the validator
628 * Sort potential anchors so that the most preferred for use come first.
632 private static Collection<TrustAnchor> sortPotentialAnchors(Set<TrustAnchor> anchors) {
633 if (anchors.size() <= 1)
    [all...]
  /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) {
  /frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
XmlConfigTests.java 276 // Check that the child inherited the cleartext value and anchors.
300 Set<TrustAnchor> anchors = config.getTrustAnchors(); local
301 MoreAsserts.assertEmpty(anchors);
311 Set<TrustAnchor> anchors = config.getTrustAnchors(); local
312 MoreAsserts.assertNotEmpty(anchors);
313 for (TrustAnchor anchor : anchors) {
325 Set<TrustAnchor> anchors = config.getTrustAnchors(); local
327 for (TrustAnchor anchor : anchors) {
343 Set<TrustAnchor> anchors = config.getTrustAnchors(); local
345 for (TrustAnchor anchor : anchors) {
    [all...]
  /external/regex-re2/re2/testing/
tester.cc 607 static Prog::Anchor anchors[] = { member in namespace:re2
629 for (int i = 0; i < arraysize(anchors); i++)
630 okay &= TestCase(text, context, anchors[i]);
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
PKIX.java 87 private Set<TrustAnchor> anchors; field in class:PKIX.ValidatorParams
104 this.anchors = params.getTrustAnchors();
105 // Make sure that none of the trust anchors include name constraints
107 for (TrustAnchor anchor : this.anchors) {
171 return anchors;
  /external/nist-pkits/src/libcore/java/security/cert/
X509CertificateNistPkitsTest.java 156 Set<TrustAnchor> anchors = new HashSet<TrustAnchor>(); local
157 anchors.add(new TrustAnchor(trustedCA, null));
159 PKIXParameters params = new PKIXParameters(anchors);
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
pef.c 140 struct traceback_table_anchors anchors; local
144 anchors.ctl_info = bfd_getb32 (buf + pos + offset);
147 if (anchors.ctl_info > 1024)
150 offset += anchors.ctl_info * 4;
  /prebuilts/tools/common/m2/repository/org/seleniumhq/selenium/selenium-htmlunit-driver/2.42.2/
selenium-htmlunit-driver-2.42.2.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
rtl.h 250 vec<rtx, va_gc> *anchors;
249 vec<rtx, va_gc> *anchors; variable
    [all...]
  /prebuilts/maven_repo/android/com/android/support/constraint/constraint-layout-solver/1.0.0-alpha1/
constraint-layout-solver-1.0.0-alpha1.jar 
  /prebuilts/tools/common/offline-m2/com/android/support/constraint/constraint-layout-solver/1.0.0-alpha3/
constraint-layout-solver-1.0.0-alpha3.jar 
  /prebuilts/tools/common/offline-m2/com/android/support/constraint/constraint-layout-solver/1.0.0-alpha4/
constraint-layout-solver-1.0.0-alpha4.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.help_3.5.0.v20100524.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/stringtemplate/3.2.1/
stringtemplate-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/ST4/4.0.8/
ST4-4.0.8.jar 
  /prebuilts/tools/common/netbeans-visual/
org-netbeans-api-visual.jar 

Completed in 477 milliseconds

1 2