Searched refs:update (Results 176 - 200 of 641) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/amd64/
H A DAMD64JavaCallWrapper.java37 public void update(Observable o, Object data) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/x86/
H A DX86JavaCallWrapper.java37 public void update(Observable o, Object data) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DGenericGrowableArray.java36 public void update(Observable o, Object data) {
H A DHashtable.java35 public void update(Observable o, Object data) {
H A DHashtableBucket.java35 public void update(Observable o, Object data) {
H A DHashtableEntry.java37 public void update(Observable o, Object data) {
H A DRBNode.java60 methods when necessary. Subclasses can use this to update any
64 return true if an update actually occurred, false if not. */
65 public boolean update() { method in class:RBNode
H A DRobustOopDeterminator.java45 public void update(Observable o, Object data) {
/openjdk7/jdk/src/share/classes/java/util/
H A DObservable.java38 * to their <code>update</code> method.
59 * @see java.util.Observer#update(java.util.Observable, java.lang.Object)
104 * Each observer has its <code>update</code> method called with two
112 * @see java.util.Observer#update(java.util.Observable, java.lang.Object)
124 * Each observer has its <code>update</code> method called with two
130 * @see java.util.Observer#update(java.util.Observable, java.lang.Object)
159 ((Observer)arrLocal[i]).update(this, arg);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaPanelUI.java45 public final void update(final Graphics g, final JComponent c) { method in class:AquaPanelUI
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/spi/
H A DPolicyMapConfigurator.java60 Collection<PolicySubject> update(PolicyMap policyMap, SEIModel model, WSBinding wsBinding) throws PolicyException; method in interface:PolicyMapConfigurator
/openjdk7/jdk/test/sun/security/provider/certpath/CertId/
H A DCheckCertId.java52 hash.update(cert.getSubjectX500Principal().getEncoded());
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A DDesCbcMd5EType.java83 md5.update(data);
H A DRsaMd5CksumType.java86 md5.update(data);
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DManifestEntryVerifier.java92 * null it signifies that update/verify should ignore this entry.
157 * update the digests for the digests we are interested in
159 public void update(byte buffer) { method in class:ManifestEntryVerifier
163 digests.get(i).update(buffer);
168 * update the digests for the digests we are interested in
170 public void update(byte buffer[], int off, int len) { method in class:ManifestEntryVerifier
174 digests.get(i).update(buffer, off, len);
/openjdk7/jdk/test/javax/crypto/Cipher/
H A DInOutBuffers.java45 c.update(b, b);
/openjdk7/jdk/src/share/classes/sun/rmi/log/
H A DLogHandler.java33 * A LogHandler represents snapshots and update records as serializable
37 * apply an update to a snapshot. The client must specifiy these methods
92 * Writes the representation (a serializable object) of an update
94 * update method of ReliableLog.
108 * Reads a stably logged update (a serializable object) from a
110 * every record in the log. After reading the update, this method
126 * Reads a stably logged update (a serializable object) from a stream.
128 * log. After reading the update, this method is invoked in order to
129 * obtain the new snapshot value. The method should apply the update
132 * @param update th
138 applyUpdate(Object update, Object state) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DSignedObject.java224 verificationEngine.update(this.content.clone());
242 signingEngine.update(this.content.clone());
/openjdk7/jdk/test/com/sun/jdi/
H A DFieldWatchpoints.java47 public void update (){ method in class:FieldWatchpointsDebugee
62 my.update();
80 startTo("FieldWatchpointsDebugee", "update", "()V");
/openjdk7/jdk/test/java/math/BigInteger/
H A DModPow65537.java85 sig.update(data);
89 sig.update(data);
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DSeedGenerator.java159 md.update(b);
172 md.update(s.getBytes());
173 md.update(p.getProperty(s).getBytes());
176 md.update
191 md.update(entry.getFileName().toString().getBytes());
199 md.update((byte)ex.hashCode());
205 md.update(memBytes, 0, memBytes.length);
207 md.update(memBytes, 0, memBytes.length);
/openjdk7/jdk/test/java/security/MessageDigest/
H A DByteBuffers.java27 * @summary Test the MessageDigest.update(ByteBuffer) method
82 md.update(b);
87 md.update(b);
/openjdk7/jdk/test/javax/crypto/Mac/
H A DByteBuffers.java27 * @summary Test the Mac.update(ByteBuffer) method
82 mac.update(b);
87 mac.update(b);
/openjdk7/jdk/test/sun/security/pkcs11/MessageDigest/
H A DByteBuffers.java27 * @summary Test the MessageDigest.update(ByteBuffer) method
91 md.update(b);
96 md.update(b);
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicIntegerFieldUpdater.java94 * @param update the new value
99 public abstract boolean compareAndSet(T obj, int expect, int update); argument
114 * @param update the new value
119 public abstract boolean weakCompareAndSet(T obj, int expect, int update); argument
307 public boolean compareAndSet(T obj, int expect, int update) { argument
309 return unsafe.compareAndSwapInt(obj, offset, expect, update);
312 public boolean weakCompareAndSet(T obj, int expect, int update) { argument
314 return unsafe.compareAndSwapInt(obj, offset, expect, update);

Completed in 97 milliseconds

1234567891011>>