Home
last modified time | relevance | path

Searched defs:update (Results 1 – 25 of 25) sorted by relevance

/libcore/luni/src/main/java/java/util/zip/
DAdler32.java54 public void update(int i) { in update() method in Adler32
64 public void update(byte[] buf) { in update() method in Adler32
72 public void update(byte[] buf, int offset, int byteCount) { in update() method in Adler32
DChecksum.java48 public void update(byte[] buf, int off, int nbytes); in update() method
56 public void update(int val); in update() method
DCRC32.java55 public void update(int val) { in update() method in CRC32
65 public void update(byte[] buf) { in update() method in CRC32
73 public void update(byte[] buf, int offset, int byteCount) { in update() method in CRC32
/libcore/luni/src/main/java/java/util/concurrent/atomic/
DAtomicReferenceFieldUpdater.java90 public abstract boolean compareAndSet(T obj, V expect, V update); in compareAndSet()
108 public abstract boolean weakCompareAndSet(T obj, V expect, V update); in weakCompareAndSet()
247 void updateCheck(T obj, V update) { in updateCheck()
255 public boolean compareAndSet(T obj, V expect, V update) { in compareAndSet()
263 public boolean weakCompareAndSet(T obj, V expect, V update) { in weakCompareAndSet()
DAtomicReference.java84 public final boolean compareAndSet(V expect, V update) { in compareAndSet()
100 public final boolean weakCompareAndSet(V expect, V update) { in weakCompareAndSet()
DAtomicReferenceArray.java151 public final boolean compareAndSet(int i, E expect, E update) { in compareAndSet()
155 private boolean compareAndSetRaw(long offset, E expect, E update) { in compareAndSetRaw()
172 public final boolean weakCompareAndSet(int i, E expect, E update) { in weakCompareAndSet()
DAtomicBoolean.java69 public final boolean compareAndSet(boolean expect, boolean update) { in compareAndSet()
87 public boolean weakCompareAndSet(boolean expect, boolean update) { in weakCompareAndSet()
DAtomicLongFieldUpdater.java75 public abstract boolean compareAndSet(T obj, long expect, long update); in compareAndSet()
95 public abstract boolean weakCompareAndSet(T obj, long expect, long update); in weakCompareAndSet()
292 public boolean compareAndSet(T obj, long expect, long update) { in compareAndSet()
297 public boolean weakCompareAndSet(T obj, long expect, long update) { in weakCompareAndSet()
386 public boolean compareAndSet(T obj, long expect, long update) { in compareAndSet()
397 public boolean weakCompareAndSet(T obj, long expect, long update) { in weakCompareAndSet()
DAtomicIntegerFieldUpdater.java72 public abstract boolean compareAndSet(T obj, int expect, int update); in compareAndSet()
92 public abstract boolean weakCompareAndSet(T obj, int expect, int update); in weakCompareAndSet()
310 public boolean compareAndSet(T obj, int expect, int update) { in compareAndSet()
315 public boolean weakCompareAndSet(T obj, int expect, int update) { in weakCompareAndSet()
DAtomicIntegerArray.java137 public final boolean compareAndSet(int i, int expect, int update) { in compareAndSet()
141 private boolean compareAndSetRaw(long offset, int expect, int update) { in compareAndSetRaw()
158 public final boolean weakCompareAndSet(int i, int expect, int update) { in weakCompareAndSet()
DAtomicLongArray.java136 public final boolean compareAndSet(int i, long expect, long update) { in compareAndSet()
140 private boolean compareAndSetRaw(long offset, long expect, long update) { in compareAndSetRaw()
157 public final boolean weakCompareAndSet(int i, long expect, long update) { in weakCompareAndSet()
DAtomicInteger.java105 public final boolean compareAndSet(int expect, int update) { in compareAndSet()
121 public final boolean weakCompareAndSet(int expect, int update) { in weakCompareAndSet()
DAtomicLong.java119 public final boolean compareAndSet(long expect, long update) { in compareAndSet()
135 public final boolean weakCompareAndSet(long expect, long update) { in weakCompareAndSet()
/libcore/luni/src/main/java/java/util/
DObserver.java39 void update(Observable observable, Object data); in update() method
DFormatter.java565 public NativeDecimalFormat update(LocaleData localeData, String pattern) { in update() method in Formatter.CachedDecimalFormat
/libcore/luni/src/main/java/java/security/
DMessageDigest.java183 public void update(byte arg0) { in update() method in MessageDigest
200 public void update(byte[] input, int offset, int len) { in update() method in MessageDigest
219 public void update(byte[] input) { in update() method in MessageDigest
361 public final void update(ByteBuffer input) { in update() method in MessageDigest
DSignature.java474 public final void update(byte b) throws SignatureException { in update() method in Signature
491 public final void update(byte[] data) throws SignatureException { in update() method in Signature
512 public final void update(byte[] data, int off, int len) in update() method in Signature
534 public final void update(ByteBuffer data) throws SignatureException { in update() method in Signature
/libcore/luni/src/main/java/javax/crypto/
DMac.java339 public final void update(byte input) throws IllegalStateException { in update() method in Mac
362 public final void update(byte[] input, int offset, int len) throws IllegalStateException { in update() method in Mac
385 public final void update(byte[] input) throws IllegalStateException { in update() method in Mac
404 public final void update(ByteBuffer input) { in update() method in Mac
DCipher.java985 public final byte[] update(byte[] input) { in update() method in Cipher
1018 public final byte[] update(byte[] input, int inputOffset, int inputLen) { in update() method in Cipher
1072 public final int update(byte[] input, int inputOffset, int inputLen, in update() method in Cipher
1107 public final int update(byte[] input, int inputOffset, int inputLen, in update() method in Cipher
1153 public final int update(ByteBuffer input, ByteBuffer output) in update() method in Cipher
/libcore/luni/src/test/java/libcore/java/util/
DOldObserverTest.java28 public void update(Observable observed, Object arg) { in update() method in OldObserverTest.Mock_Observer
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DObservableTest.java31 public void update(Observable observed, Object arg) { in update() method in ObservableTest.TestObserver
51 public void update(Observable observed, Object arg) { in update() method in ObservableTest.DeleteTestObserver
/libcore/luni/src/test/java/libcore/java/util/logging/
DOldLogRecordTest.java82 public synchronized void update(){ in update() method in OldLogRecordTest.MockThread
/libcore/luni/src/main/java/java/util/concurrent/locks/
DAbstractQueuedSynchronizer.java543 protected final boolean compareAndSetState(int expect, int update) { in compareAndSetState()
2263 private final boolean compareAndSetHead(Node update) { in compareAndSetHead()
2270 private final boolean compareAndSetTail(Node expect, Node update) { in compareAndSetTail()
2279 int update) { in compareAndSetWaitStatus()
2289 Node update) { in compareAndSetNext()
DAbstractQueuedLongSynchronizer.java313 protected final boolean compareAndSetState(long expect, long update) { in compareAndSetState()
2035 private final boolean compareAndSetHead(Node update) { in compareAndSetHead()
2042 private final boolean compareAndSetTail(Node expect, Node update) { in compareAndSetTail()
2051 int update) { in compareAndSetWaitStatus()
2061 Node update) { in compareAndSetNext()
/libcore/luni/src/test/java/libcore/java/sql/
DOldConnectionTest.java1129 String update = "update zoo set family = ? where name = ?;"; in testPrepareStatement() local