HomeSort by relevance Sort by last modified time
    Searched defs:update (Results 601 - 625 of 1828) sorted by null

<<21222324252627282930>>

  /hardware/bsp/intel/peripheral/libupm/src/lsm9ds0/
lsm9ds0.cxx 205 void LSM9DS0::update() function in class:LSM9DS0
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
quantize.c 782 int update = 0; local
786 /* if any of the delta_q values are changing update flag has to be set */
801 update |= cm->y2dc_delta_q != new_delta_q;
812 if(update)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_encodemv.c 139 const int update = cost_branch256(ct, *cur_p) + vp9_cost_zero(upd_p) > local
141 vp9_write(w, update, upd_p);
142 if (update) {
146 return update;
  /hardware/intel/img/hwcomposer/merrifield/common/base/
HwcLayer.cpp 256 bool HwcLayer::update(hwc_layer_1_t *layer) function in class:android::intel::HwcLayer
258 // update layer
284 // if not a FB layer & a plane was attached update plane's data buffer
353 // TODO: same handle does not mean there is always no update
362 // update handle always as it can become "NULL"
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ObservableTest.java 32 public void update(Observable observed, Object arg) { method in class:ObservableTest.TestObserver
52 public void update(Observable observed, Object arg) { method in class:ObservableTest.DeleteTestObserver
  /libcore/luni/src/test/java/libcore/java/security/
MessageDigestTest.java 48 sha.update(new byte[] { 1, 2, 3 });
50 sha.update(new byte[] { 4, 5, 6 });
226 md.update(mb);
270 md.update(message);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
NullCipherTest.java 98 * Class under test for byte[] update(byte[])
102 byte [] r = c.update(b);
108 * Class under test for byte[] update(byte[], int, int)
112 byte [] r = c.update(b, 0, 5);
116 r = c.update(b, 1, 3);
124 * Class under test for int update(byte[], int, int, byte[])
129 c.update(b, 0, 5, r);
134 * Class under test for int update(byte[], int, int, byte[], int)
139 c.update(b, 0, 5, r, 0);
187 * Class under test for byte[] update(byte[], int, int
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
MessageDigest1Test.java 46 * java.security.MessageDigest#update(byte)
50 md.update((byte) 1);
55 * java.security.MessageDigest#update(byte[], int, int)
60 md.update(bytes, 1, 2);
66 md.update(null, 0, 1);
72 md.update(bytes, 0, bytes.length + 1);
78 md.update(bytes, Integer.MAX_VALUE, 1);
94 md.update(bytes, offset, len);
99 * java.security.MessageDigest#update(byte[])
104 md.update(b)
    [all...]
  /libcore/ojluni/src/main/java/java/security/
MessageDigest.java 45 * processed through it using the {@link #update(byte) update}
63 * md.update(toChapter1);
66 * md.update(toChapter2);
315 * @param input the byte with which to update the digest.
317 public void update(byte input) { method in class:MessageDigest
333 public void update(byte[] input, int offset, int len) { method in class:MessageDigest
349 public void update(byte[] input) { method in class:MessageDigest
355 * Update the digest using the specified ByteBuffer. The digest is
364 public final void update(ByteBuffer input) method in class:MessageDigest
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
GZIPInputStream.java 122 crc.update(buf, off, n);
ZipInputStream.java 205 crc.update(b, off, len);
224 crc.update(b, off, len);
  /libcore/ojluni/src/main/java/javax/crypto/
Mac.java 482 public final void update(byte input) throws IllegalStateException { method in class:Mac
498 public final void update(byte[] input) throws IllegalStateException { method in class:Mac
519 public final void update(byte[] input, int offset, int len) method in class:Mac
545 public final void update(ByteBuffer input) { method in class:Mac
564 * the same key, if desired, via new calls to <code>update</code> and
593 * the same key, if desired, via new calls to <code>update</code> and
636 * the same key, if desired, via new calls to <code>update</code> and
654 update(input);
666 * the same key, if desired, via new calls to <code>update</code> and
  /libcore/ojluni/src/main/java/sun/security/ssl/
HandshakeMessage.java 565 signature.update(clntNonce);
566 signature.update(svrNonce);
569 signature.update((byte)(tmp >> 8));
570 signature.update((byte)(tmp & 0x0ff));
571 signature.update(rsa_modulus);
574 signature.update((byte)(tmp >> 8));
575 signature.update((byte)(tmp & 0x0ff));
576 signature.update(rsa_exponent);
859 * Update sig with nonces and Diffie-Hellman public key.
865 sig.update(clntNonce)
1765 Method update = (Method)r; local
    [all...]
  /libcore/ojluni/src/main/java/sun/security/util/
ManifestDigester.java 214 md.update(rawBytes, offset, lengthWithBlankLine);
235 md.update(bytes, start, i-start-1);
241 md.update(bytes, start, i-start);
250 md.update(rawBytes, offset, length);
265 md.update(rawBytes, 0, rawBytes.length);
ManifestEntryVerifier.java 92 * 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);
  /libcore/support/src/test/java/tests/security/
MessageDigestTest.java 94 digest.update(buf, 0, read);
112 digest.update((byte)val);
149 digest.update(source1.getBytes(), 0, source1.length());
165 digest.update(source2.getBytes(), 0, source2.length());
181 digest.update(source3.getBytes(), 0, source3.length());
  /packages/apps/Camera2/src/com/android/camera/
MediaSaverImpl.java 233 resolver.update(uri, values, null, null);
  /packages/apps/Camera2/src/com/android/camera/device/
SingleDeviceStateMachine.java 125 update(); method
142 update(); method
193 update(); method
242 update(); method
265 private void update() { method in class:SingleDeviceStateMachine
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastContentProvider.java 174 * Update one or more rows. This throws an exception, as the database can only be modified by
178 * @param selection an optional filter to match rows to update.
182 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:CellBroadcastContentProvider
183 throw new UnsupportedOperationException("update not supported");
265 int rowCount = db.update(CellBroadcastDatabaseHelper.TABLE_NAME, cv, whereClause, whereArgs);
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
ClockProvider.java 202 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { method in class:ClockProvider
209 count = db.update(ALARMS_TABLE_NAME, values,
215 count = db.update(INSTANCES_TABLE_NAME, values,
220 throw new UnsupportedOperationException("Cannot update URI: " + uri);
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchCircleView.java 97 void update() { method in class:StopwatchCircleView
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
VideoPauseController.java 41 update(call);
44 public void update(Call call) { method in class:VideoPauseController.CallContext
239 mPrimaryCallContext.update(call);
  /packages/apps/Dialer/src/com/android/dialer/database/
FilteredNumberProvider.java 164 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:FilteredNumberProvider
176 db.execSQL(" UPDATE " + DialerDatabaseHelper.Tables.FILTERED_NUMBER_TABLE
183 Log.d(TAG, "Could not update blocked statistics for " + id);
190 int rows = db.update(DialerDatabaseHelper.Tables.FILTERED_NUMBER_TABLE,
VoicemailArchiveProvider.java 130 update(newUri, values, null, null); method
157 public int update(Uri uri, method in class:VoicemailArchiveProvider
163 int rows = db.update(DialerDatabaseHelper.Tables.VOICEMAIL_ARCHIVE_TABLE,
  /packages/apps/Email/provider_src/com/android/email/activity/setup/
AccountSettingsUtils.java 94 account.update(context, cv);
97 // Update the backup (side copy) of the accounts

Completed in 755 milliseconds

<<21222324252627282930>>