Searched refs:store (Results 51 - 75 of 94) sorted by relevance

1234

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamReaderBufferCreator.java88 store(reader);
137 private void store(XMLStreamReader reader) throws XMLStreamException { method in class:StreamReaderBufferCreator
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DBuilder.java446 for (CertStore store : certStores) {
449 store.getCertificates(selector);
H A DDistributionPointFetcher.java247 for (CertStore store : certStores) {
249 for (CRL crl : store.getCRLs(xcs)) {
H A DSunCertPathBuilder.java366 * It uses an adjacency list to store all certificates which were
678 * It uses an adjacency list to store all certificates which were
862 for (CertStore store : stores) {
866 store.getCertificates(targetSel);
/openjdk7/jdk/src/share/classes/java/util/
H A DProperties.java53 * instead. If the <code>store</code> or <code>save</code> method is called
62 * {@link #store(java.io.Writer, java.lang.String) store(Writer, String)}
63 * methods load and store properties from and to a character based stream
67 * {@link #store(java.io.OutputStream, java.lang.String) store(OutputStream, String)}
68 * methods work the same way as the load(Reader)/store(Writer, String) pair, except
78 * #storeToXML(OutputStream, String, String)} methods load and store properties
691 * Calls the <code>store(OutputStream out, String comments)</code> method
696 * properties list is via the <code>store(OutputStrea
762 public void store(Writer writer, String comments) method in class:Properties
809 public void store(OutputStream out, String comments) method in class:Properties
[all...]
/openjdk7/jdk/test/java/security/KeyStore/
H A DEntryMethods.java109 // TEST store random param
118 ks.store(new FooParameter());
126 // TEST store null param
128 ks.store(null);
315 ks.store(new EntryMethods.FooParameter());
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.inline.hpp42 Atomic::store((jlong)value, (volatile jlong*)dest);
44 // possible word-tearing during load/store
/openjdk7/jdk/test/sun/security/pkcs12/
H A DPKCS12SameKeyId.java109 p12.store(fos, PASSWORD);
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DLoadingStrategiesTest.java139 props.store(os, null);
/openjdk7/jdk/test/sun/security/pkcs11/ec/
H A DReadPKCS12.java146 ks2.store(out, "passphrase".toCharArray());
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A DorderAccess_windows_x86.inline.hpp50 // A volatile store has release semantics.
84 inline void OrderAccess::release_store(volatile jlong* p, jlong v) { Atomic::store(v, p); }
88 inline void OrderAccess::release_store(volatile julong* p, julong v) { Atomic::store((jlong)v, (volatile jlong*)p); }
/openjdk7/jdk/src/share/classes/sun/security/validator/
H A DPKIXValidator.java374 CertStore store = CertStore.getInstance("Collection",
376 params.addCertStore(store);
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DJarSigner.java118 KeyStore store; // the keystore specified by -keystore field in class:JarSigner
121 String keystore; // key store file
971 if (store != null) {
973 alias = store.getCertificateAlias(c);
1599 store = KeyStore.getInstance(storetype);
1601 store = KeyStore.getInstance(storetype, providerName);
1618 store.load(null, storepass);
1631 store.load(is, storepass);
1638 Enumeration<String> aliases = store.aliases();
1642 X509Certificate c = (X509Certificate)store
[all...]
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DSystemFlavorMap.java377 // Convert then store key and value
388 // We need to store the charset and eoln
402 // But don't store any of these parameters in the
429 // For text/* flavors, store mappings in separate maps to
432 store(value, key, getFlavorToNative());
433 store(key, value, getNativeToFlavor());
435 store(flavor, key, getFlavorToNative());
436 store(key, flavor, getNativeToFlavor());
520 private void store(Object hashed, Object listed, Map map) { method in class:SystemFlavorMap
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletProps.java159 avProps.store(out, amh.getMessage("prop.store"));
H A DMain.java437 avProps.store(out, lookup("main.prop.store"));
/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.hpp271 // Cast and array store checks take the offending class.
503 // Create & transform a StoreNode and store the effect into the
521 // All in one pre-barrier, store, post_barrier
522 // Insert a write-barrier'd store. This is to let generational GC
525 // It comes in 3 flavors of store to an object, array, or unknown.
535 Node* adr, // actual adress to store val at
544 Node* adr, // actual adress to store val at
554 Node* adr, // actual adress to store val at
565 Node* adr, // actual adress to store val at
576 void post_barrier(Node* ctl, Node* store, Nod
[all...]
H A DidealKit.hpp224 Node* store(Node* ctl,
H A DgraphKit.cpp598 Node *store = store_oop_to_object(control(), ex_node, adr, adr_typ, null(), val_type, T_OBJECT); local
1459 // Back-to-back stores can only remove intermediate store with DU info
1499 Node* store,
1511 g1_write_barrier_post(store, obj, adr, adr_idx, val, bt, use_precise);
1516 write_barrier_post(store, obj, adr, adr_idx, val, use_precise);
1556 Node* store = store_to_memory(control(), adr, val, bt, adr_idx); local
1557 post_barrier(control(), store, obj, adr, adr_idx, val, bt, use_precise); local
1558 return store;
1564 Node* adr, // actual adress to store val at
1706 // have a card mark store an
1498 post_barrier(Node* ctl, Node* store, Node* obj, Node* adr, uint adr_idx, Node* val, BasicType bt, bool use_precise) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Settings/src/com/sun/hotspot/igv/settings/
H A DViewPanel.java125 void store() { method in class:ViewPanel
/openjdk7/langtools/make/tools/SelectTool/
H A DSelectToolTask.java249 p.store(out, "langtools properties");
/openjdk7/jdk/test/javax/management/modelmbean/
H A DRequiredModelMBeanMethodTest.java56 * - An operation (store()) that has the same signature as a
107 "name=store",
114 new ModelMBeanOperationInfo("store", "store descr",
176 (resource.storeCalled ? "" : " store"));
231 "store",
326 public void store() { method in class:RequiredModelMBeanMethodTest.Resource
/openjdk7/jdk/src/share/classes/java/security/
H A DKeyStore.java148 * // store away the keystore
152 * ks.store(fos, password);
162 * to protect the secret key entry, and to store the keystore
216 * {@link #store(KeyStore.LoadStoreParameter) store}
1139 public final void store(OutputStream stream, char[] password) method in class:KeyStore
1153 * that specifies how to store the keystore,
1169 public final void store(LoadStoreParameter param) method in class:KeyStore
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java1019 items.makeLocalItem(v).store();
1134 // For each case, store its label in an array.
1281 lockVar.store();
1410 excVar.store();
1430 retVar.store();
1486 items.makeLocalItem(exparam).store();
1662 r.store();
1749 items.makeIndexedItem(elemtype).store();
1895 od.store();
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp291 // Compute the minimum of the string lengths, scale it and store it in limit
796 int LIR_Assembler::store(LIR_Opr from_reg, Register base, int offset, BasicType type, bool wide, bool unaligned) { function in class:LIR_Assembler
802 store_offset = store(from_reg, base, O7, type, wide);
866 int LIR_Assembler::store(LIR_Opr from_reg, Register base, Register disp, BasicType type, bool wide) { function in class:LIR_Assembler
1107 offset = store(tmp, base, addr->index()->as_pointer_register(), type, wide);
1110 offset = store(tmp, base, addr->disp(), type, wide, false);
1127 offset = store(tmp, base, addr->disp() + lo_word_offset_in_bytes, T_INT, wide, false);
1134 store(tmp, base, addr->disp() + hi_word_offset_in_bytes, T_INT, wide, false);
1149 offset = store(tmp, base, addr->index()->as_pointer_register(), type, wide);
1152 offset = store(tm
[all...]

Completed in 96 milliseconds

1234