Searched defs:stores (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DPKIXParameters.java274 * @param stores a <code>List</code> of <code>CertStore</code>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<CertStore>(stores);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DSunCertPathBuilder.java860 private X500Principal getTargetSubjectDN(List<CertStore> stores, argument
862 for (CertStore store : stores) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_64.cpp553 // leaves one slot empty and only stores to a single slot. In this case the
1470 // order them safely. Compute a safe order for issuing stores and
1471 // break any cycles in those stores. This code is fairly general but
1582 GrowableArray<MoveOperation*>* stores = get_store_order(tmp_vmreg); local
1583 for (int i = 0; i < stores->length(); i++) {
1584 arg_order.push(stores->at(i)->src_index());
1585 arg_order.push(stores->at(i)->dst_index());
1608 // create links between loads and stores
1618 GrowableArray<MoveOperation*>* stores = new GrowableArray<MoveOperation*>(); local
1632 stores
[all...]

Completed in 1498 milliseconds