/libcore/luni/src/main/java/java/security/ |
DigestOutputStream.java | 82 // update digest only if digest functionality is on 84 digest.update((byte)b); 105 // update digest only if digest functionality is on 107 digest.update(b, off, len);
|
/libcore/luni/src/main/java/java/util/zip/ |
Adler32.java | 48 * Update this {@code Adler32} checksum with the single byte provided as 52 * the byte to update checksum with. 54 public void update(int i) { method in class:Adler32 59 * Update this {@code Adler32} checksum using the contents of {@code buf}. 62 * bytes to update checksum with. 64 public void update(byte[] buf) { method in class:Adler32 65 update(buf, 0, buf.length); method 69 * Update this {@code Adler32} checksum with the contents of {@code buf}, 72 public void update(byte[] buf, int offset, int byteCount) { method in class:Adler32
|
CRC32.java | 53 * represents the byte to update the checksum. 55 public void update(int val) { method in class:CRC32 63 * the buffer holding the data to update the checksum with. 65 public void update(byte[] buf) { method in class:CRC32 66 update(buf, 0, buf.length); method 70 * Update this {@code CRC32} checksum with the contents of {@code buf}, 73 public void update(byte[] buf, int offset, int byteCount) { method in class:CRC32
|
CheckedInputStream.java | 65 check.update(x); 84 check.update(buffer, byteOffset, bytesRead);
|
CheckedOutputStream.java | 69 check.update(val); 89 check.update(buf, off, nbytes);
|
/packages/apps/HTMLViewer/src/com/android/htmlviewer/ |
FileContentProvider.java | 89 public int update(Uri uri, ContentValues values, String selection, method in class:FileContentProvider
|
/packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/ |
NaughtySuggestionProvider.java | 48 public int update(Uri uri, ContentValues values, String selection, method in class:NaughtySuggestionProvider
|
/packages/experimental/RpcPerformance/src/com/android/rpc_performance/ |
Provider.java | 43 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:Provider
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
MD5Calculator.java | 37 digester.update(bytes, 0, byteCount);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DataRowHandlerForCommonDataKind.java | 51 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, method in class:DataRowHandlerForCommonDataKind 59 return super.update(db, txContext, values, c, callerIsSyncAdapter);
|
VoicemailTable.java | 42 public int update(UriData uriData, ContentValues values, String selection, method in interface:VoicemailTable.Delegate
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
hmac.py | 72 self.outer.update(key.translate(trans_5C)) 73 self.inner.update(key.translate(trans_36)) 75 self.update(msg) 80 def update(self, msg): member in class:HMAC 81 """Update this hashing object with the string msg. 83 self.inner.update(msg) 88 An update to this copy won't affect the original object. 103 h.update(self.inner.digest()) 129 You can now feed arbitrary strings into the object using its update()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
hmac.py | 72 self.outer.update(key.translate(trans_5C)) 73 self.inner.update(key.translate(trans_36)) 75 self.update(msg) 80 def update(self, msg): member in class:HMAC 81 """Update this hashing object with the string msg. 83 self.inner.update(msg) 88 An update to this copy won't affect the original object. 103 h.update(self.inner.digest()) 129 You can now feed arbitrary strings into the object using its update()
|
/system/core/libutils/ |
CallStack.cpp | 33 this->update(ignoreDepth+1); 40 void CallStack::update(int32_t ignoreDepth, pid_t tid) { function in class:android::CallStack
|
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
ContactUtil.java | 36 public static void update(ContentResolver resolver, long contactId, method in class:ContactUtil 39 resolver.update(uri, values, null, null); 134 Assert.assertEquals(1, resolver.update(AggregationExceptions.CONTENT_URI, values, null,
|
RawContactUtil.java | 36 public static void update(ContentResolver resolver, long rawContactId, method in class:RawContactUtil 39 resolver.update(uri, values, null, null);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/ |
OAEPEncoding.java | 64 hash.update(encodingParams, 0, encodingParams.length); 339 mgf1Hash.update(Z, zOff, zLen); 340 mgf1Hash.update(C, 0, C.length); 352 mgf1Hash.update(Z, zOff, zLen); 353 mgf1Hash.update(C, 0, C.length);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/ |
HMac.java | 125 digest.update(key, 0, keyLength); 149 ((Digest)opadState).update(outputBuf, 0, blockLength); method 152 digest.update(inputPad, 0, inputPad.length); 165 public void update( method in class:HMac 168 digest.update(in); 171 public void update( method in class:HMac 176 digest.update(in, inOff, len); 188 digest.update(outputBuf, blockLength, digest.getDigestSize()); 192 digest.update(outputBuf, 0, outputBuf.length); 208 digest.update(inputPad, 0, inputPad.length) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/ |
RSADigestSigner.java | 123 * update the internal digest with the byte b 125 public void update( method in class:RSADigestSigner 128 digest.update(input); 132 * update the internal digest with the byte array in 134 public void update( method in class:RSADigestSigner 139 digest.update(input, inOff, length);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/ |
LayerTreeOutline.js | 86 update: function(layerTree)
|
/frameworks/base/core/java/android/provider/ |
SyncStateContract.java | 121 public static void update(ContentProviderClient provider, Uri uri, byte[] data) method in class:SyncStateContract.Helpers 125 provider.update(uri, values, null, null);
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/ |
RawContactUtil.java | 37 public static void update(ContentResolver resolver, long rawContactId, method in class:RawContactUtil 40 resolver.update(uri, values, null, null);
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
MockContentProvider.java | 67 public int update(Uri uri, ContentValues values, String selection, method in class:MockContentProvider
|
/developers/samples/android/common/src/java/com/example/android/common/assetprovider/ |
AssetProvider.java | 137 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:AssetProvider
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
GLVertex.java | 73 public void update(IntBuffer vertexBuffer, M4 transform) { method in class:GLVertex
|