Searched refs:store (Results 1 - 25 of 94) sorted by relevance

1234

/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...]
H A DXdd.java69 // check that user defined attributes are supported by the file store
70 FileStore store = Files.getFileStore(file);
71 if (!store.supportsFileAttributeView(UserDefinedFileAttributeView.class)) {
72 System.err.format("UserDefinedFileAttributeView not supported on %s\n", store);
/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/hotspot/src/share/vm/runtime/
H A Datomic.hpp38 // Atomically store to a location
39 static void store (jbyte store_value, jbyte* dest);
40 static void store (jshort store_value, jshort* dest);
41 static void store (jint store_value, jint* dest);
43 static void store (jlong store_value, jlong* dest);
47 static void store (jbyte store_value, volatile jbyte* dest);
48 static void store (jshort store_value, volatile jshort* dest);
49 static void store (jint store_value, volatile jint* dest);
51 static void store (jlong store_value, volatile jlong* dest);
/openjdk7/jdk/test/java/nio/file/FileStore/
H A DBasic.java113 for (FileStore store: FileSystems.getDefault().getFileStores()) {
114 System.out.format("%s (name=%s type=%s)\n", store, store.name(),
115 store.type());
118 store.getTotalSpace();
119 store.getUnallocatedSpace();
120 store.getUsableSpace();
123 assertTrue(!store.equals(prev));
124 prev = store;
/openjdk7/jdk/src/macosx/native/java/util/
H A DSCDynamicStoreConfig.m99 NSDictionary *realmConfigsForRealms(SCDynamicStoreRef store, NSArray *realms) {
103 CFTypeRef realmInfo = SCDynamicStoreCopyValue(store, (CFStringRef) [NSString stringWithFormat:@"Kerberos:%@", realm]);
121 void _SCDynamicStoreCallBack(SCDynamicStoreRef store, CFArrayRef changedKeys, void *info) {
141 SCDynamicStoreRef store = SCDynamicStoreCreate(NULL, CFSTR("java"), _SCDynamicStoreCallBack, NULL);
142 if (store == NULL) {
148 SCDynamicStoreSetNotificationKeys(store, (CFArrayRef) keys, NULL);
150 CFRunLoopSourceRef rls = SCDynamicStoreCreateRunLoopSource(NULL, store, 0);
156 CFRelease(store);
172 SCDynamicStoreRef store = SCDynamicStoreCreate(NULL, CFSTR("java-kerberos"), NULL, NULL);
173 if (store
[all...]
/openjdk7/jdk/test/java/util/TimeZone/
H A DTimeZoneDatePermissionCheck.sh35 rm -f ${TESTCLASSES}/timezonedatetest.store
37 -keystore ${TESTCLASSES}/timezonedatetest.store \
50 -keystore ${TESTCLASSES}/timezonedatetest.store \
/openjdk7/jdk/test/sun/security/pkcs12/
H A DBug6415637.java50 KeyStore store = KeyStore.getInstance("PKCS12");
51 store.load(new ByteArrayInputStream(blob), new char[0]);
52 if (!store.aliases().nextElement().equals("test"))
55 (KeyStore.PrivateKeyEntry) store.getEntry("test",
/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/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_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/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/fmt/
H A DJPropertyFile.java59 data.store(out,null);
/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/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.hpp32 // Sparc load/store emission
35 // The following "pseudo" sparc instructions (load/store) make it easier to use the indexed addressing mode
38 // When disp <= 13 bits long, a single load or store instruction is emitted with (disp + [d]).
40 // and then a load or store is emitted with ([O7] + [d]).
43 int store(LIR_Opr from_reg, Register base, int offset, BasicType type, bool wide, bool unaligned);
44 int store(LIR_Opr from_reg, Register base, Register disp, BasicType type, bool wide);
/openjdk7/hotspot/test/compiler/7103261/
H A DTest7103261.java78 static void valueTest(boolean store) { argument
97 if (store)
/openjdk7/jdk/test/java/nio/file/FileSystem/
H A DBasic.java68 for (FileStore store: fs.getFileStores()) {
69 System.out.println(store);
/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/
H A DRmiBootstrapTest.sh43 cp -rf ${TESTSRC}/ssl/*store ${TESTCLASSES}/ssl
H A DRmiSslBootstrapTest.sh43 cp -rf ${TESTSRC}/ssl/*store ${TESTCLASSES}/ssl
H A DRmiSslNoKeyStoreTest.sh43 cp -rf ${TESTSRC}/ssl/*store ${TESTCLASSES}/ssl
/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/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/jdk/test/java/nio/file/Files/
H A DInterruptCopy.java45 FileStore store = Files.getFileStore(dir);
46 System.out.format("Checking space (%s)\n", store);
47 long usableSpace = store.getUsableSpace();
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dzip.h73 void add_to_jar_directory(const char* fname, bool store, int modtime,
75 void write_jar_header(const char* fname, bool store, int modtime,
/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/hotspot/src/share/vm/opto/
H A Dgcm.cpp390 Node* store = load->in(MemNode::Memory); local
400 if (store != NULL) mem_inputs[mem_inputs_length++] = store;
433 // For each nearby store, either insert an "anti-dependence" edge
434 // from the load to the store, or else move LCA upward to force the
435 // load to (eventually) be scheduled in a block above the store.
441 // store between the load's "early block" and the updated LCA.
490 // to look for anti-deps between this load and any store.
502 Node_List worklist_mem(area); // prior memory state to store
523 // to occur before each such store
540 Node* store = worklist_store.pop(); local
722 Node* store = non_early_stores.pop(); local
[all...]

Completed in 93 milliseconds

1234