Searched refs:blob (Results 1 – 8 of 8) sorted by relevance
| /frameworks/base/cmds/keystore/ |
| D | keystore.c | 161 } blob; variable 166 int length = blob.length; in encrypt_blob() 173 length += blob.value - blob.digested; in encrypt_blob() 174 blob.length = htonl(blob.length); in encrypt_blob() 175 MD5(blob.digested, length, blob.digest); in encrypt_blob() 177 length += blob.digested - blob.encrypted; in encrypt_blob() 179 memcpy(vector, blob.vector, AES_BLOCK_SIZE); in encrypt_blob() 180 AES_cbc_encrypt(blob.encrypted, blob.encrypted, length, aes_key, vector, in encrypt_blob() 183 blob.reserved = 0; in encrypt_blob() 184 length += blob.encrypted - (uint8_t *)&blob; in encrypt_blob() [all …]
|
| /frameworks/base/tests/AndroidTests/src/com/android/unit_tests/ |
| D | CursorWindowTest.java | 121 byte[] blob = new byte[1000]; in doTestValues() 123 Arrays.fill(blob, value); in doTestValues() 124 assertTrue(window.putBlob(blob, 0, 6)); in doTestValues() 125 assertTrue(Arrays.equals(blob, window.getBlob(0, 6))); in doTestValues()
|
| D | DatabaseCursorTest.java | 134 byte[] blob = new byte[1000]; in testBlob() 136 Arrays.fill(blob, value); in testBlob() 137 args[3] = blob; in testBlob() 159 assertTrue(Arrays.equals(blob, cBlob)); in testBlob() 167 Arrays.fill(blob, value); in testBlob()
|
| /frameworks/base/core/java/android/provider/ |
| D | SyncStateContract.java | 129 byte[] blob = c.getBlob(c.getColumnIndexOrThrow(Columns.DATA)); in getWithUri() 130 return Pair.create(ContentUris.withAppendedId(uri, rowId), blob); in getWithUri()
|
| /frameworks/base/tests/FrameworkTest/src/com/android/frameworktest/scroll/ |
| D | RequestRectangleVisibleWithInternalScroll.java | 56 mTextBlob = (TextView) findViewById(R.id.blob); in onCreate()
|
| /frameworks/base/core/jni/ |
| D | android_database_SQLiteQuery.cpp | 243 uint8_t const * blob = (uint8_t const *)sqlite3_column_blob(statement, i); in native_fill_window() local 253 window->copyIn(offset, blob, size); in native_fill_window()
|
| /frameworks/base/core/java/com/google/android/mms/pdu/ |
| D | PduPersister.java | 427 byte [] blob = new EncodedStringValue(text).getTextString(); in loadParts() 428 baos.write(blob, 0, blob.length); in loadParts()
|
| /frameworks/base/docs/html/guide/topics/resources/ |
| D | resources-i18n.jd | 703 <p><strong>Asset</strong>: A single blob of data associated with an application. This
|