/libcore/ojluni/annotations/hiddenapi/java/util/zip/ |
D | CRC32.java | 37 public void update(int b) { in update() method in CRC32 41 public void update(byte[] b, int off, int len) { in update() method in CRC32 45 public void update(byte[] b) { in update() method in CRC32 49 public void update(java.nio.ByteBuffer buffer) { in update() method in CRC32 62 private static native int update(int crc, int b); in update() method in CRC32
|
D | Adler32.java | 37 public void update(int b) { in update() method in Adler32 41 public void update(byte[] b, int off, int len) { in update() method in Adler32 45 public void update(byte[] b) { in update() method in Adler32 49 public void update(java.nio.ByteBuffer buffer) { in update() method in Adler32 62 private static native int update(int adler, int b); in update() method in Adler32
|
/libcore/ojluni/src/main/java/java/util/zip/ |
D | Adler32.java | 59 public void update(int b) { in update() method in Adler32 71 public void update(byte[] b, int off, int len) { in update() method in Adler32 86 public void update(byte[] b) { in update() method in Adler32 104 public void update(ByteBuffer buffer) { in update() method in Adler32 137 private native static int update(int adler, int b); in update() method in Adler32
|
D | CRC32.java | 57 public void update(int b) { in update() method in CRC32 69 public void update(byte[] b, int off, int len) { in update() method in CRC32 84 public void update(byte[] b) { in update() method in CRC32 101 public void update(ByteBuffer buffer) { in update() method in CRC32 134 private native static int update(int crc, int b); in update() method in CRC32
|
D | Checksum.java | 40 public void update(int b); in update() method 48 public void update(byte[] b, int off, int len); in update() method
|
/libcore/ojluni/annotations/sdk/nullability/java/security/ |
D | MessageDigest.annotated.java | 47 public void update(byte input) { throw new RuntimeException("Stub!"); } in update() method in MessageDigest 49 public void update(byte @libcore.util.NonNull [] input, int offset, int len) { throw new RuntimeExc… in update() method in MessageDigest 51 public void update(byte @libcore.util.NonNull [] input) { throw new RuntimeException("Stub!"); } in update() method in MessageDigest 53 public final void update(@libcore.util.NonNull java.nio.ByteBuffer input) { throw new RuntimeExcept… in update() method in MessageDigest
|
/libcore/ojluni/annotations/mmodule/javax/crypto/ |
D | Mac.annotated.java | 61 public final void update(byte input) throws java.lang.IllegalStateException { throw new RuntimeExce… in update() method in Mac 63 public final void update(byte[] input) throws java.lang.IllegalStateException { throw new RuntimeEx… in update() method in Mac 65 public final void update(byte[] input, int offset, int len) throws java.lang.IllegalStateException … in update() method in Mac 67 public final void update(java.nio.ByteBuffer input) { throw new RuntimeException("Stub!"); } in update() method in Mac
|
D | Cipher.annotated.java | 85 public final byte[] update(byte[] input) { throw new RuntimeException("Stub!"); } in update() method in Cipher 87 public final byte[] update(byte[] input, int inputOffset, int inputLen) { throw new RuntimeExceptio… in update() method in Cipher 89 public final int update(byte[] input, int inputOffset, int inputLen, byte[] output) throws javax.cr… in update() method in Cipher 91 public final int update(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffse… in update() method in Cipher 93 public final int update(java.nio.ByteBuffer input, java.nio.ByteBuffer output) throws javax.crypto.… in update() method in Cipher
|
/libcore/ojluni/annotations/mmodule/java/security/ |
D | Signature.annotated.java | 65 public final void update(byte b) throws java.security.SignatureException { throw new RuntimeExcepti… in update() method in Signature 67 public final void update(byte[] data) throws java.security.SignatureException { throw new RuntimeEx… in update() method in Signature 69 public final void update(byte[] data, int off, int len) throws java.security.SignatureException { t… in update() method in Signature 71 public final void update(java.nio.ByteBuffer data) throws java.security.SignatureException { throw … in update() method in Signature
|
/libcore/ojluni/src/main/java/java/util/concurrent/atomic/ |
D | AtomicBoolean.java | 99 public final boolean compareAndSet(boolean expect, boolean update) { in compareAndSet() 117 public boolean weakCompareAndSet(boolean expect, boolean update) { in weakCompareAndSet()
|
D | AtomicReferenceFieldUpdater.java | 130 public abstract boolean compareAndSet(T obj, V expect, V update); in compareAndSet() 148 public abstract boolean weakCompareAndSet(T obj, V expect, V update); in weakCompareAndSet() 420 public final boolean compareAndSet(T obj, V expect, V update) { in compareAndSet() 426 public final boolean weakCompareAndSet(T obj, V expect, V update) { in weakCompareAndSet()
|
D | AtomicLongFieldUpdater.java | 113 public abstract boolean compareAndSet(T obj, long expect, long update); in compareAndSet() 133 public abstract boolean weakCompareAndSet(T obj, long expect, long update); in weakCompareAndSet() 453 public final boolean compareAndSet(T obj, long expect, long update) { in compareAndSet() 458 public final boolean weakCompareAndSet(T obj, long expect, long update) { in weakCompareAndSet() 594 public final boolean compareAndSet(T obj, long expect, long update) { in compareAndSet() 605 public final boolean weakCompareAndSet(T obj, long expect, long update) { in weakCompareAndSet()
|
D | AtomicReference.java | 117 public final boolean compareAndSet(V expect, V update) { in compareAndSet() 133 public final boolean weakCompareAndSet(V expect, V update) { in weakCompareAndSet()
|
D | AtomicReferenceArray.java | 176 public final boolean compareAndSet(int i, E expect, E update) { in compareAndSet() 180 private boolean compareAndSetRaw(long offset, E expect, E update) { in compareAndSetRaw() 197 public final boolean weakCompareAndSet(int i, E expect, E update) { in weakCompareAndSet()
|
D | AtomicIntegerArray.java | 164 public final boolean compareAndSet(int i, int expect, int update) { in compareAndSet() 168 private boolean compareAndSetRaw(long offset, int expect, int update) { in compareAndSetRaw() 185 public final boolean weakCompareAndSet(int i, int expect, int update) { in weakCompareAndSet()
|
D | AtomicLongArray.java | 163 public final boolean compareAndSet(int i, long expect, long update) { in compareAndSet() 167 private boolean compareAndSetRaw(long offset, long expect, long update) { in compareAndSetRaw() 184 public final boolean weakCompareAndSet(int i, long expect, long update) { in weakCompareAndSet()
|
/libcore/ojluni/src/main/java/javax/crypto/ |
D | Mac.java | 569 public final void update(byte input) throws IllegalStateException { in update() method in Mac 585 public final void update(byte[] input) throws IllegalStateException { in update() method in Mac 606 public final void update(byte[] input, int offset, int len) in update() method in Mac 632 public final void update(ByteBuffer input) { in update() method in Mac
|
/libcore/ojluni/src/main/java/java/util/ |
D | Observer.java | 46 void update(Observable o, Object arg); in update() method
|
/libcore/ojluni/src/main/java/java/security/ |
D | MessageDigest.java | 339 public void update(byte input) { in update() method in MessageDigest 355 public void update(byte[] input, int offset, int len) { in update() method in MessageDigest 371 public void update(byte[] input) { in update() method in MessageDigest 386 public final void update(ByteBuffer input) { in update() method in MessageDigest
|
/libcore/luni/src/main/java/libcore/io/ |
D | Libcore.java | 49 public static boolean compareAndSetOs(Os expect, Os update) { in compareAndSetOs()
|
/libcore/ojluni/src/main/java/sun/security/util/ |
D | ManifestEntryVerifier.java | 157 public void update(byte buffer) { in update() method in ManifestEntryVerifier 168 public void update(byte buffer[], int off, int len) { in update() method in ManifestEntryVerifier
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | OldObserverTest.java | 28 public void update(Observable observed, Object arg) { in update() method in OldObserverTest.Mock_Observer
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/atomic/ |
D | AtomicInteger.java | 67 public final boolean compareAndSet(int expect, int update) { in compareAndSet() 71 public final boolean weakCompareAndSet(int expect, int update) { in weakCompareAndSet()
|
/libcore/luni/src/test/java/libcore/java/lang/invoke/ |
D | MethodHandlesTest.java | 1249 public String update(Float f0, Float... floats) { in update() method in MethodHandlesTest.BaseVariableArityTester 1277 public String update(boolean... booleans) { return lastResult = tally(booleans); } in update() method in MethodHandlesTest.VariableArityTester 1278 public String update(byte... bytes) { return lastResult = tally(bytes); } in update() method in MethodHandlesTest.VariableArityTester 1279 public String update(char... chars) { return lastResult = tally(chars); } in update() method in MethodHandlesTest.VariableArityTester 1280 public String update(short... shorts) { return lastResult = tally(shorts); } in update() method in MethodHandlesTest.VariableArityTester 1281 public String update(int... ints) { in update() method in MethodHandlesTest.VariableArityTester 1285 public String update(long... longs) { return lastResult = tally(longs); } in update() method in MethodHandlesTest.VariableArityTester 1286 public String update(float... floats) { return lastResult = tally(floats); } in update() method in MethodHandlesTest.VariableArityTester 1287 public String update(double... doubles) { return lastResult = tally(doubles); } in update() method in MethodHandlesTest.VariableArityTester 1289 public String update(Float f0, Float... floats) { return lastResult = tally(f0, floats); } in update() method in MethodHandlesTest.VariableArityTester [all …]
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | ObservableTest.java | 32 public void update(Observable observed, Object arg) { in update() method in ObservableTest.TestObserver 52 public void update(Observable observed, Object arg) { in update() method in ObservableTest.DeleteTestObserver
|