Searched refs:store (Results 26 - 50 of 94) sorted by relevance

1234

/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/tools/IdealGraphVisualizer/Settings/src/com/sun/hotspot/igv/settings/
H A DViewOptionsPanelController.java49 getPanel().store();
/openjdk7/jdk/test/java/lang/ClassLoader/deadlock/
H A DGetResource.java52 prop.store(System.out, "");
/openjdk7/jdk/src/share/classes/sun/misc/
H A DVMSupport.java70 props.store(out, null);
/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...]
/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);
H A DloopTransform.cpp2393 // Examine an inner loop looking for a a single store of an invariant
2395 bool PhaseIdealLoop::match_fill_loop(IdealLoopTree* lpt, Node*& store, Node*& store_value, argument
2411 if (store != NULL) {
2422 msg = "variant store value";
2426 store = n;
2434 if (store == NULL) {
2435 // No store in loop
2448 if (msg == NULL && !store->in(MemNode::Address)->is_AddP()) {
2449 msg = "can't handle store address";
2450 msg_node = store
2632 Node* store = NULL; local
[all...]
/openjdk7/jdk/test/demo/zipfs/
H A DBasic.java98 FileStore store = Files.getFileStore(fs.getPath("/"));
99 if (!store.supportsFileAttributeView("basic"))
/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/test/sun/security/pkcs11/KeyStore/
H A DSecretKeysBasic.java169 ks.store(null);
182 ks.store(null);
/openjdk7/jdk/test/sun/security/mscapi/
H A DKeyStoreCompatibilityMode.java80 // Checking keystore store operations
93 System.out.println("Checking " + (doLoad ? "load" : "store") +
101 keyStore.store((OutputStream) stream, password);
118 // store will fail if load has previously failed
/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/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/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/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/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_blk.s237 ! and store has completed
246 BST ! block store data from BLD_A0
250 BST ! block store data from BLD_B0
257 ! and store has completed.
/openjdk7/jdk/test/java/nio/file/Files/
H A DFileAttributes.java279 FileStore store = Files.getFileStore(file);
284 if (store.supportsFileAttributeView("posix"))
288 if (store.supportsFileAttributeView("unix"))
291 if (store.supportsFileAttributeView("dos"))
/openjdk7/jdk/test/sun/security/rsa/
H A DGenKeyStore.java107 ks.store(out, password);
/openjdk7/jdk/test/sun/security/pkcs11/rsa/
H A DGenKeyStore.java107 ks.store(out, password);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DUtils.java296 int store = (ze.getCompressedSize() > 0) ?
302 + store + "%\t"
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A DorderAccess_bsd_x86.inline.hpp83 inline void OrderAccess::release_store(volatile jlong* p, jlong v) { Atomic::store(v, p); }
87 inline void OrderAccess::release_store(volatile julong* p, julong v) { Atomic::store((jlong)v, (volatile jlong*)p); }
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A DorderAccess_linux_x86.inline.hpp83 inline void OrderAccess::release_store(volatile jlong* p, jlong v) { Atomic::store(v, p); }
87 inline void OrderAccess::release_store(volatile julong* p, julong v) { Atomic::store((jlong)v, (volatile jlong*)p); }
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A DorderAccess_solaris_sparc.inline.hpp95 inline void OrderAccess::release_store(volatile jlong* p, jlong v) { Atomic::store(v, p); }
99 inline void OrderAccess::release_store(volatile julong* p, julong v) { Atomic::store((jlong)v, (volatile jlong*)p); }
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A DorderAccess_solaris_x86.inline.hpp99 inline void OrderAccess::release_store(volatile jlong* p, jlong v) { Atomic::store(v, p); }
103 inline void OrderAccess::release_store(volatile julong* p, julong v) { Atomic::store((jlong)v, (volatile jlong*)p); }

Completed in 80 milliseconds

1234