Searched defs:store (Results 1 - 25 of 37) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/management/
H A DPersistentMBean.java40 * construction in order to prime the MBean from the persistent store.
41 * In the case of a ModelMBean, the store method should be called by the MBeanServer based on the descriptors in
51 * the MBean in the persistent store. The data loaded could include
67 * writes it out to the persistent store. The state stored could include
79 * Do not store the MBean if 'persistPolicy' field is:
87 * @exception InstanceNotFoundException Could not find/access the persistent store
89 public void store() method in interface:PersistentMBean
/openjdk7/jdk/src/share/sample/nio/file/
H A DDiskUsage.java54 static void printFileStore(FileStore store) throws IOException { argument
55 long total = store.getTotalSpace() / K;
56 long used = (store.getTotalSpace() - store.getUnallocatedSpace()) / K;
57 long avail = store.getUsableSpace() / K;
59 String s = store.toString();
71 for (FileStore store: fs.getFileStores()) {
72 printFileStore(store);
76 FileStore store = Files.getFileStore(Paths.get(file));
77 printFileStore(store);
[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/hotspot/test/compiler/7103261/
H A DTest7103261.java78 static void valueTest(boolean store) { argument
97 if (store)
/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/net/
H A DCookieManager.java70 * or not one cookie should be accepted and put into cookie store. User can use
133 * cookie store and accept policy. The effect is same as
142 * Create a new cookie manager with specified cookie store and cookie policy.
144 * @param store a <tt>CookieStore</tt> to be used by cookie manager.
152 public CookieManager(CookieStore store, argument
160 if (store == null) {
163 cookieJar = store;
186 * To retrieve current cookie store.
188 * @return the cookie store currently used by cookie manager.
329 // Only store cookie
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Datomic_bsd_x86.inline.hpp35 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } function in class:Atomic
36 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } function in class:Atomic
37 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } function in class:Atomic
41 inline void Atomic::store (jbyte store_value, volatile jbyte* dest) { *dest = store_value; } function in class:Atomic
42 inline void Atomic::store (jshort store_value, volatile jshort* dest) { *dest = store_value; } function in class:Atomic
43 inline void Atomic::store (jint store_value, volatile jint* dest) { *dest = store_value; } function in class:Atomic
104 inline void Atomic::store (jlong store_value, jlong* dest) { *dest = store_value; } function in class:Atomic
105 inline void Atomic::store (jlong store_value, volatile jlong* dest) { *dest = store_value; } function in class:Atomic
211 inline void Atomic::store(jlong store_value, jlong* dest) { function in class:Atomic
215 inline void Atomic::store(jlon function in class:Atomic
[all...]
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Datomic_linux_sparc.inline.hpp35 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } function in class:Atomic
36 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } function in class:Atomic
37 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } function in class:Atomic
38 inline void Atomic::store (jlong store_value, jlong* dest) { *dest = store_value; } function in class:Atomic
42 inline void Atomic::store (jbyte store_value, volatile jbyte* dest) { *dest = store_value; } function in class:Atomic
43 inline void Atomic::store (jshort store_value, volatile jshort* dest) { *dest = store_value; } function in class:Atomic
44 inline void Atomic::store (jint store_value, volatile jint* dest) { *dest = store_value; } function in class:Atomic
45 inline void Atomic::store (jlong store_value, volatile jlong* dest) { *dest = store_value; } function in class:Atomic
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Datomic_linux_x86.inline.hpp35 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } function in class:Atomic
36 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } function in class:Atomic
37 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } function in class:Atomic
41 inline void Atomic::store (jbyte store_value, volatile jbyte* dest) { *dest = store_value; } function in class:Atomic
42 inline void Atomic::store (jshort store_value, volatile jshort* dest) { *dest = store_value; } function in class:Atomic
43 inline void Atomic::store (jint store_value, volatile jint* dest) { *dest = store_value; } function in class:Atomic
104 inline void Atomic::store (jlong store_value, jlong* dest) { *dest = store_value; } function in class:Atomic
105 inline void Atomic::store (jlong store_value, volatile jlong* dest) { *dest = store_value; } function in class:Atomic
211 inline void Atomic::store(jlong store_value, jlong* dest) { function in class:Atomic
215 inline void Atomic::store(jlon function in class:Atomic
[all...]
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Datomic_solaris_sparc.inline.hpp35 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } function in class:Atomic
36 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } function in class:Atomic
37 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } function in class:Atomic
41 inline void Atomic::store (jbyte store_value, volatile jbyte* dest) { *dest = store_value; } function in class:Atomic
42 inline void Atomic::store (jshort store_value, volatile jshort* dest) { *dest = store_value; } function in class:Atomic
43 inline void Atomic::store (jint store_value, volatile jint* dest) { *dest = store_value; } function in class:Atomic
58 inline void Atomic::store(jlong store_value, jlong* dest) { *dest = store_value; } function in class:Atomic
59 inline void Atomic::store(jlong store_value, volatile jlong* dest) { *dest = store_value; } function in class:Atomic
87 inline void Atomic::store(jlong store_value, jlong* dest) { function in class:Atomic
91 inline void Atomic::store(jlon function in class:Atomic
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DField.java81 public XPathMatcher createMatcher(FieldActivator activator, ValueStore store) { argument
82 return new Field.Matcher(fXPath, activator, store);
154 /** Value store for data values. */
162 public Matcher(Field.XPath xpath, FieldActivator activator, ValueStore store) { argument
165 fStore = store;
/openjdk7/hotspot/src/share/vm/code/
H A DcompressedStream.hpp95 void store(u_char b) { function in class:CompressedWriteStream
100 store(b);
119 store((u_char)value);
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Datomic_bsd_zero.inline.hpp41 * Atomically store newval in *ptr if *ptr is equal to oldval for user space.
109 * Atomically store newval in *ptr if *ptr is equal to oldval for user space.
165 inline void Atomic::store(jint store_value, volatile jint* dest) { function in class:Atomic
240 // limitation that the only valid value to store is the immediate
315 inline void Atomic::store(jlong store_value, jlong* dest) { function in class:Atomic
319 inline void Atomic::store(jlong store_value, volatile jlong* dest) { function in class:Atomic
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Datomic_linux_zero.inline.hpp41 * Atomically store newval in *ptr if *ptr is equal to oldval for user space.
109 * Atomically store newval in *ptr if *ptr is equal to oldval for user space.
165 inline void Atomic::store(jint store_value, volatile jint* dest) { function in class:Atomic
234 // limitation that the only valid value to store is the immediate
309 inline void Atomic::store(jlong store_value, jlong* dest) { function in class:Atomic
313 inline void Atomic::store(jlong store_value, volatile jlong* dest) { function in class:Atomic
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Datomic_solaris_x86.inline.hpp33 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } function in class:Atomic
34 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } function in class:Atomic
35 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } function in class:Atomic
41 inline void Atomic::store (jbyte store_value, volatile jbyte* dest) { *dest = store_value; } function in class:Atomic
42 inline void Atomic::store (jshort store_value, volatile jshort* dest) { *dest = store_value; } function in class:Atomic
43 inline void Atomic::store (jint store_value, volatile jint* dest) { *dest = store_value; } function in class:Atomic
97 inline void Atomic::store (jlong store_value, jlong* dest) { *dest = store_value; } function in class:Atomic
98 inline void Atomic::store (jlong store_value, volatile jlong* dest) { *dest = store_value; } function in class:Atomic
162 inline void Atomic::store(jlong store_value, jlong* dest) { function in class:Atomic
166 inline void Atomic::store(jlon function in class:Atomic
[all...]
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Datomic_windows_x86.inline.hpp48 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } function in class:Atomic
49 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } function in class:Atomic
50 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } function in class:Atomic
55 inline void Atomic::store (jbyte store_value, volatile jbyte* dest) { *dest = store_value; } function in class:Atomic
56 inline void Atomic::store (jshort store_value, volatile jshort* dest) { *dest = store_value; } function in class:Atomic
57 inline void Atomic::store (jint store_value, volatile jint* dest) { *dest = store_value; } function in class:Atomic
73 inline void Atomic::store (jlong store_value, jlong* dest) { *dest = store_value; } function in class:Atomic
74 inline void Atomic::store (jlong store_value, volatile jlong* dest) { *dest = store_value; } function in class:Atomic
270 inline void Atomic::store(jlong store_value, volatile jlong* dest) { function in class:Atomic
280 inline void Atomic::store(jlon function in class:Atomic
[all...]
/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/java/security/cert/
H A DPKIXParameters.java299 * @param store the <code>CertStore</code> to add. If <code>null</code>,
300 * the store is ignored (not added to list).
302 public void addCertStore(CertStore store) { argument
303 if (store != null) {
304 this.certStores.add(store);
/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/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/native/sun/font/layout/
H A DLookupProcessor.cpp141 le_int32 store = order; local
152 lookupOrderArray[store++] = lookupListIndex;
155 return store - order;
/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/hotspot/src/share/vm/opto/
H A Dparse3.cpp264 Node* store; local
272 store = store_oop_to_object( control(), obj, adr, adr_type, val, field_type, bt);
274 store = store_to_memory( control(), adr, val, bt, adr_type, is_vol );
281 // membar is dependent on the store, keeping any other membars generated
282 // below from floating up past the store.
284 insert_mem_bar_volatile(Op_MemBarVolatile, adr_idx, store);
289 insert_mem_bar_volatile(Op_MemBarVolatile, Compile::AliasIdxBot, store);
296 insert_mem_bar_volatile(Op_MemBarVolatile, i, store);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DItems.java202 /** Generate code to store top of stack into this item.
204 void store() { method in class:Items.Item
205 throw new AssertionError("store unsupported: " + this);
321 void store() { method in class:Items.IndexedItem
396 void store() { method in class:Items.LocalItem
417 store();
444 void store() { method in class:Items.StaticItem
483 void store() { method in class:Items.MemberItem
667 lhs.store();
676 lhs.store();
[all...]
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dzip.cpp99 void jar::add_to_jar_directory(const char* fname, bool store, int modtime, argument
114 header[4] = ( store ) ? 0x0 : SWAP_BYTES(0x2);
117 header[5] = ( store ) ? 0x0 : SWAP_BYTES(0x08);
161 void jar::write_jar_header(const char* fname, bool store, int modtime, argument
176 header[3] = ( store ) ? 0x0 : SWAP_BYTES(0x2);
179 header[4] = ( store ) ? 0x0 : SWAP_BYTES(0x08);
278 PRINTCR((2, "Reverting to store fn=%s\t%d -> %d\n",
297 bool store = true; local
298 add_to_jar_directory((const char*)dir_name, store, default_modtime, 0, 0, 0);
299 write_jar_header( (const char*)dir_name, store, default_modtim
[all...]

Completed in 87 milliseconds

12