Searched refs:stores (Results 1 - 6 of 6) sorted by relevance

/openjdk9/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DPKIX.java81 private List<CertStore> stores; field in class:PKIX.ValidatorParams
152 if (stores == null)
153 stores = params.getCertStores();
154 return stores;
212 private List<CertStore> stores; field in class:PKIX.BuilderParams
235 if (stores == null) {
237 stores = new ArrayList<>(params.getCertStores());
238 Collections.sort(stores, new CertStoreComparator());
240 return stores;
250 private static X500Principal getTargetSubject(List<CertStore> stores, argument
[all...]
H A DPKIXExtendedParameters.java123 public void setCertStores(List<CertStore> stores) { argument
124 p.setCertStores(stores);
H A DRevocationChecker.java208 List<CertStore> stores)
212 return getResponderCert(rp.ocspSubject, anchors, stores);
215 anchors, stores);
226 List<CertStore> stores)
236 return getResponderCert(sel, anchors, stores);
242 List<CertStore> stores)
258 return getResponderCert(sel, anchors, stores);
263 List<CertStore> stores)
277 for (CertStore store : stores) {
206 getResponderCert(RevocationProperties rp, Set<TrustAnchor> anchors, List<CertStore> stores) argument
224 getResponderCert(String subject, Set<TrustAnchor> anchors, List<CertStore> stores) argument
239 getResponderCert(String issuer, String serial, Set<TrustAnchor> anchors, List<CertStore> stores) argument
261 getResponderCert(X509CertSelector sel, Set<TrustAnchor> anchors, List<CertStore> stores) argument
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/
H A DVerifyUpdateUsages.java67 List<StoreFieldNode> stores = graph.getNodes().filter(StoreFieldNode.class).snapshot();
72 for (StoreFieldNode store : stores) {
/openjdk9/jdk/src/java.base/share/classes/java/security/cert/
H A DPKIXParameters.java274 * @param stores a {@code List} of {@code CertStore}s (or
281 public void setCertStores(List<CertStore> stores) { argument
282 if (stores == null) {
285 for (Iterator<CertStore> i = stores.iterator(); i.hasNext();) {
291 this.certStores = new ArrayList<>(stores);
/openjdk9/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_64.cpp614 // leaves one slot empty and only stores to a single slot. In this case the
1543 // order them safely. Compute a safe order for issuing stores and
1544 // break any cycles in those stores. This code is fairly general but
1655 GrowableArray<MoveOperation*>* stores = get_store_order(tmp_vmreg); local
1656 for (int i = 0; i < stores->length(); i++) {
1657 arg_order.push(stores->at(i)->src_index());
1658 arg_order.push(stores->at(i)->dst_index());
1681 // create links between loads and stores
1691 GrowableArray<MoveOperation*>* stores = new GrowableArray<MoveOperation*>(); local
1705 stores
[all...]

Completed in 60 milliseconds