/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowRemoteViews.java | 104 viewUpdater.update(v); 115 final void update(View parent) { method in class:ShadowRemoteViews.ViewUpdater
|
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/ |
ApiProvider.java | 125 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:ApiProvider
|
/external/tpm2/ |
OsslCryptoEngine.h | 49 /* update hashes |len| bytes of |data| into the state in |ctx->md_data|. */ 50 void (*update)(EVP_MD_CTX *ctx, const void *data, size_t count); member in struct:env_md_st
|
/external/webp/src/enc/ |
tree.c | 492 const int update = (p0 != VP8CoeffsProba0[t][b][c][p]); local 493 if (VP8PutBit(bw, update, VP8CoeffsUpdateProba[t][b][c][p])) {
|
/frameworks/base/core/java/android/provider/ |
SearchIndexablesProvider.java | 187 public final int update( method in class:SearchIndexablesProvider 189 throw new UnsupportedOperationException("Update not supported");
|
/frameworks/base/core/java/android/text/ |
AlteredCharSequence.java | 50 /* package */ void update(char[] sub, int substart, int subend) { method in class:AlteredCharSequence
|
/frameworks/base/keystore/java/android/security/keystore/ |
KeyStoreCryptoOperationChunkedStreamer.java | 33 * {@code update} and {@code finish} operations. 36 * update and finish operations. Firstly, KeyStore's update operation can consume only a limited 37 * amount of data in one go because the operations are marshalled via Binder. Secondly, the update 39 * remainder for next time. The helper exposes {@link #update(byte[], int, int) update} and 45 * parameters to {@code update} and {@code final} operations. 56 * Returns the result of the KeyStore {@code update} operation or null if keystore couldn't 59 OperationResult update(byte[] input); method in interface:KeyStoreCryptoOperationChunkedStreamer.Stream 91 public byte[] update(byte[] input, int inputOffset, int inputLength) throws KeyStoreException method in class:KeyStoreCryptoOperationChunkedStreamer 332 public OperationResult update(byte[] input) { method in class:KeyStoreCryptoOperationChunkedStreamer.MainDataStream [all...] |
/frameworks/base/packages/SettingsLib/tests/src/com/android/settingslib/wifi/ |
AccessPointTest.java | 57 mAccessPoint.update(result); 62 mAccessPoint.update(result); 70 mAccessPoint.update(wifiInfo, null); 73 mAccessPoint.update(null, null); 79 mAccessPoint.update(result);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/ |
ClassifierData.java | 37 public void update(MotionEvent event) { method in class:ClassifierData
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
SpTexts.java | 28 * Capture initial sp values for registered textviews, and update properly when configuration 61 public void update() { method in class:SpTexts
|
/frameworks/base/services/core/java/com/android/server/am/ |
DumpHeapProvider.java | 72 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:DumpHeapProvider
|
/frameworks/base/test-runner/src/android/test/mock/ |
MockContentProvider.java | 108 public int update(String callingPackage, Uri url, ContentValues values, String selection, method in class:MockContentProvider.InversionIContentProvider 110 return MockContentProvider.this.update(url, values, selection, selectionArgs); 215 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:MockContentProvider
|
MockIContentProvider.java | 91 public int update(String callingPackage, Uri url, ContentValues values, String selection, method in class:MockIContentProvider
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
BridgeContentProvider.java | 107 public int update(String callingPackage, Uri arg0, ContentValues arg1, String arg2, method in class:BridgeContentProvider
|
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
BordeauxRanker.java | 79 // Update the ranker with two samples, sample1 has higher rank than 81 public boolean update(final HashMap<String, Float> sample1, method in class:BordeauxRanker
|
/frameworks/multidex/library/src/android/support/multidex/ |
ZipUtil.java | 115 crc.update(buffer, 0, length);
|
/frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/ |
SampleProvider.java | 145 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:SampleProvider
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
GsmCdmaCall.java | 114 /*package*/ boolean update (GsmCdmaConnection conn, DriverCall dc) { method in class:GsmCdmaCall 142 * but no response has yet been received so update() has not yet been called
|
/hardware/libhardware/include/hardware/ |
keymaster2.h | 293 * update(), finish() or abort(). 299 * operations. Any result other than KM_ERROR_OK from begin(), update() or finish() implicitly 329 * update(), finish() or abort(). If operation_handle is NULL, begin() will return 342 * If operation_handle is invalid, update() will return KM_ERROR_INVALID_OPERATION_HANDLE. 344 * update() may not consume all of the data provided in the data buffer. update() will return 354 * calls to update(), but only until input data has been provided. 357 * Note that update() may or may not consume all of the data provided. See \p input_consumed. 359 * \param[out] input_consumed Amount of data that was consumed by update(). If this is less 361 * update() 376 keymaster_error_t (*update)(const struct keymaster2_device* dev, member in struct:keymaster2_device [all...] |
/libcore/benchmarks/src/benchmarks/regression/ |
DigestBenchmark.java | 62 digest.update(DATA, 0, DATA_SIZE);
|
MessageDigestBenchmark.java | 44 digest.update(DATA, 0, DATA_SIZE);
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
MessageDigest2Test.java | 84 d1.update(b); 88 d1.update((byte) 1); 89 d2.update((byte) 1); 206 sha.update(MESSAGE.getBytes()); 213 sha.update((byte) 'a'); 221 sha.update((byte) 'a'); 229 sha.update((byte) 'a'); 272 * java.security.MessageDigest#update(byte[], int, int) 276 MessageDigest.getInstance("SHA").update(new byte[] {}, method
|
/libcore/ojluni/src/main/java/sun/security/ssl/ |
MAC.java | 241 mac.update(block); 247 mac.update(bb); 249 mac.update(buf, offset, len);
|
/libcore/tzdata/tools/src/main/libcore/tzdata/update/tools/ |
TzDataBundleBuilder.java | 16 package libcore.tzdata.update.tools; 25 import libcore.tzdata.update.ConfigBundle; 28 * A class for creating a {@link ConfigBundle} containing timezone update data. 61 * Builds a {@link libcore.tzdata.update.ConfigBundle}.
|
/libcore/tzdata/update/src/main/libcore/tzdata/update/ |
ConfigBundle.java | 16 package libcore.tzdata.update;
|