Searched refs:update (Results 101 - 125 of 641) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ia64/
H A DIA64JavaCallWrapper.java37 public void update(Observable o, Object data) {
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsPopupWindow.java76 public void update(Graphics g) { method in class:WindowsPopupWindow
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/
H A DCramMD5Base.java188 md5.update(ipad);
189 md5.update(text);
193 md5.update(opad);
194 md5.update(digest);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DMemoryCredentialsCache.java61 public abstract void update(Credentials c); method in class:MemoryCredentialsCache
/openjdk7/jdk/test/java/security/Signature/
H A DTestInitSignWithMyOwnRandom.java44 sig.update(new byte[20]);
H A DNONEwithRSA.java52 sig.update(b);
56 sig.update(b);
/openjdk7/jdk/test/javax/crypto/NullCipher/
H A DTestNPE.java63 // testing update(...)
64 byte[] out = nc.update(BYTES);
66 throw new Exception("Error with update(byte[])");
68 out = nc.update(BYTES, 0, BYTES.length);
70 throw new Exception("Error with update(byte[], int, int)");
72 if (nc.update(BYTES, 0, BYTES.length, out) != BYTES.length) {
73 throw new Exception("Error with update(byte[], int, int, byte[])");
75 if (nc.update(BYTES, 0, BYTES.length, out, 0) != BYTES.length) {
77 "Error with update(byte[], int, int, byte[], int)");
H A DTestWithoutInit.java50 // try calling update() directly
51 ci.update(in);
/openjdk7/jdk/test/sun/security/pkcs11/Cipher/
H A DTestRSACipher.java97 c1.update(b);
98 c1.update(b);
102 c1.update(b);
105 c1.update(new byte[256]);
/openjdk7/jdk/test/sun/security/pkcs11/ec/
H A DTestECDSA.java87 s.update(data);
92 s.update(data);
103 s.update(data);
180 s.update(data);
184 s.update(data);
193 s.update(digest);
201 s.update(digest);
205 s.update(digest);
212 s.update(data);
222 s.update(ne
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalMenuBarUI.java89 * @see javax.swing.plaf.ComponentUI#update
93 public void update(Graphics g, JComponent c) { method in class:MetalMenuBarUI
116 super.update(g, c);
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/
H A DDigesterOutputStream.java86 md.update((byte)input);
102 md.update(input, offset, len);
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipherOutputStream.java118 obuffer = cipher.update(ibuffer, 0, 1);
155 obuffer = cipher.update(b, off, len);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DDigesterOutputStream.java51 mda.update((byte)arg0);
64 mda.update(arg0, arg1, arg2);
/openjdk7/jdk/test/com/sun/crypto/provider/Mac/
H A DHmacPBESHA1.java62 mac.update(plainText);
68 mac.update(plainText);
/openjdk7/jdk/test/sun/security/provider/MessageDigest/
H A DOffsets.java40 md.update(new byte[arrayLen], ofs, len);
65 md.update(ofsData, ofs, n);
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DKeyProtector.java201 md.update(passwdBytes);
202 md.update(digest);
229 md.update(passwdBytes);
232 md.update(plainKey);
293 md.update(passwdBytes);
294 md.update(digest);
320 md.update(passwdBytes);
323 md.update(plainKey);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DHandshakeHash.java55 * 2. Before protocolDetermined() is called, only update(), reset(),
82 * hh.update(clientHelloBytes);
84 * hh.update(serverHelloBytes);
87 * hh.update(CertificateVerifyBytes);
90 * hh.update(finished1);
92 * hh.update(finished2);
136 void update(byte[] b, int offset, int len) { method in class:HandshakeHash
139 md5.update(b, offset, len);
140 sha.update(b, offset, len);
144 finMD.update(
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUCEncoder.java122 crc.update(a);
124 crc.update(b);
/openjdk7/jdk/test/sun/security/pkcs11/MessageDigest/
H A DReinitDigest.java60 md.update(data2);
61 md.update((byte)0);
/openjdk7/jdk/test/sun/security/pkcs11/Secmod/
H A DGetPrivateKey.java67 signature.update(data);
72 signature.update(data);
/openjdk7/jdk/test/sun/security/rsa/
H A DTestKeyPairGenerator.java49 s.update(data);
52 s.update(data);
78 sig.update(data);
81 sig.update(data);
86 sig.update(data);
/openjdk7/jdk/test/sun/security/pkcs11/rsa/
H A DTestKeyPairGenerator.java50 s.update(data);
53 s.update(data);
79 sig.update(data);
82 sig.update(data);
87 sig.update(data);
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicLongFieldUpdater.java98 * @param update the new value
103 public abstract boolean compareAndSet(T obj, long expect, long update); argument
118 * @param update the new value
123 public abstract boolean weakCompareAndSet(T obj, long expect, long update); argument
307 public boolean compareAndSet(T obj, long expect, long update) { argument
309 return unsafe.compareAndSwapLong(obj, offset, expect, update);
312 public boolean weakCompareAndSet(T obj, long expect, long update) { argument
314 return unsafe.compareAndSwapLong(obj, offset, expect, update);
388 public boolean compareAndSet(T obj, long expect, long update) { argument
394 unsafe.putLong(obj, offset, update);
399 weakCompareAndSet(T obj, long expect, long update) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DAttributeValues.java96 public void setFamily(String f) { this.family = f; update(EFAMILY); }
99 public void setWeight(float f) { this.weight = f; update(EWEIGHT); }
102 public void setWidth(float f) { this.width = f; update(EWIDTH); }
105 public void setPosture(float f) { this.posture = f; update(EPOSTURE); }
108 public void setSize(float f) { this.size = f; update(ESIZE); }
116 update(ETRANSFORM);
123 update(ETRANSFORM);
128 this.superscript = (byte)f; update(ESUPERSCRIPT); }
131 public void setFont(Font f) { this.font = f; update(EFONT); }
135 this.charReplacement = f; update(ECHAR_REPLACEMEN
556 private void update(EAttribute a) { method in class:AttributeValues
[all...]

Completed in 114 milliseconds

1234567891011>>