Home
last modified time | relevance | path

Searched refs:getBlob (Results 1 – 25 of 44) sorted by relevance

12

/frameworks/native/opengl/tests/EGLTest/
Degl_cache_test.cpp65 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4)); in TEST_P()
76 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4)); in TEST_P()
88 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4)); in TEST_P()
101 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4)); in TEST_P()
159 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4)); in TEST_P()
184 mCache->getBlob("abcd", 4, buf2, 4); in TEST_P()
205 ASSERT_EQ(16, mCache->getBlob("abcdefghij", 10, buf, 16)); in TEST_P()
234 mCache->getBlob("abcdefghij", 10, buf2, 16); in TEST_P()
246 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4)); in TEST_P()
253 ASSERT_EQ(4, mCache->getBlob("ijkl", 4, buf, 4)); in TEST_P()
[all …]
/frameworks/base/core/tests/coretests/src/android/database/
DMatrixCursorTest.java38 assertNull(cursor.getBlob(0)); in testNullValue()
156 MoreAsserts.assertEquals(new byte[] {(byte) 0xaa, (byte) 0x55}, cursor.getBlob(6)); in testRowBuilderOffer()
165 assertEquals(null, cursor.getBlob(6)); in testRowBuilderOffer()
174 assertEquals(null, cursor.getBlob(6)); in testRowBuilderOffer()
207 MoreAsserts.assertEquals(new byte[] {(byte) 0xaa, (byte) 0x55}, cursor.getBlob(6)); in checkValues()
DCursorWindowTest.java93 assertThrows(SQLiteException.class, () -> window.getBlob(0, 0)); in doTestValues()
120 assertTrue(Arrays.equals(blob, window.getBlob(0, 6))); in doTestValues()
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
DRebootEscrowDataTest.java88 RebootEscrowData.fromEncryptedData(null, expected.getBlob(), mKeyStoreEncryptionKey); in fromEncryptedData_failsOnNullKey()
98 RebootEscrowData actual = RebootEscrowData.fromEncryptedData(key, expected.getBlob(), in fromEntries_loopback_success()
103 assertThat(actual.getBlob(), is(expected.getBlob())); in fromEntries_loopback_success()
/frameworks/native/opengl/libs/EGL/
Degl_cache.cpp63 static EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize, void* value, in getBlob() function
65 return egl_cache_t::get()->getBlob(key, keySize, value, valueSize); in getBlob()
105 eglSetBlobCacheFuncsANDROID(display->disp.dpy, android::setBlob, android::getBlob); in initialize()
166 EGLsizeiANDROID egl_cache_t::getBlob(const void* key, EGLsizeiANDROID keySize, void* value, in getBlob() function in android::egl_cache_t
Degl_cache.h66 EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize,
/frameworks/base/core/java/android/database/
DAbstractWindowedCursor.java46 public byte[] getBlob(int columnIndex) { in getBlob() method in AbstractWindowedCursor
48 return mWindow.getBlob(mPos, columnIndex); in getBlob()
DRedactingCursor.java153 public byte[] getBlob(int columnIndex) { in getBlob() method in RedactingCursor
158 return super.getBlob(columnIndex); in getBlob()
DMergeCursor.java144 public byte[] getBlob(int column) in getBlob() method in MergeCursor
146 return mCursor.getBlob(column); in getBlob()
DCursorWrapper.java151 public byte[] getBlob(int columnIndex) { in getBlob() method in CursorWrapper
152 return mCursor.getBlob(columnIndex); in getBlob()
DTranslatingCursor.java211 public byte[] getBlob(int columnIndex) { in getBlob() method in TranslatingCursor
215 return super.getBlob(columnIndex); in getBlob()
DCursor.java248 byte[] getBlob(@IntRange(from = 0) int columnIndex); in getBlob() method
DMatrixCursor.java313 public byte[] getBlob(int column) { in getBlob() method in MatrixCursor
/frameworks/base/core/java/android/provider/
DSyncStateContract.java85 return c.getBlob(c.getColumnIndexOrThrow(Columns.DATA)); in get()
140 byte[] blob = c.getBlob(c.getColumnIndexOrThrow(Columns.DATA)); in getWithUri()
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/storage/
DRecoverableKeyStoreDb.java158 byte[] nonce = cursor.getBlob( in getKey()
160 byte[] keyMaterial = cursor.getBlob( in getKey()
173 keyMetadata = cursor.getBlob(metadataIdx); in getKey()
297 byte[] nonce = cursor.getBlob( in getAllKeys()
299 byte[] keyMaterial = cursor.getBlob( in getAllKeys()
312 keyMetadata = cursor.getBlob(metadataIdx); in getAllKeys()
1088 return cursor.getBlob(idx); in getBytes()
1171 return cursor.getBlob(idx); in getBytes()
/frameworks/base/core/java/com/android/internal/database/
DSortCursor.java236 public byte[] getBlob(int column) in getBlob() method in SortCursor
238 return mCursor.getBlob(column); in getBlob()
/frameworks/base/services/core/java/com/android/server/locksettings/
DRebootEscrowData.java65 public byte[] getBlob() { in getBlob() method in RebootEscrowData
/frameworks/opt/chips/src/com/android/ex/chips/
DDefaultPhotoManager.java97 return photoCursor.getBlob(PhotoQuery.PHOTO); in fetchPhotoAsync()
/frameworks/base/test-mock/src/android/test/mock/
DMockCursor.java104 public byte[] getBlob(int columnIndex) { in getBlob() method in MockCursor
/frameworks/base/core/java/com/android/internal/net/
DConnectivityBlobStore.java113 return cursor.getBlob(0); in get()
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/
DSoundTriggerDbHelper.java117 byte[] data = c.getBlob(c.getColumnIndex( in getGenericSoundModel()
/frameworks/base/services/core/java/com/android/server/net/watchlist/
DWatchlistReportDbHelper.java176 String digestHexStr = HexDump.toHexString(c.getBlob(INDEX_DIGEST)); in getAggregatedRecords()
/frameworks/base/keystore/java/android/security/keystore2/
DAndroidKeyStore3DESCipherSpi.java312 returnedIv = p.value.getBlob(); in loadAlgorithmSpecificParametersFromBeginResult()
DAndroidKeyStoreUnauthenticatedAESCipherSpi.java303 returnedIv = p.value.getBlob(); in loadAlgorithmSpecificParametersFromBeginResult()
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
DDatabaseHelper.java276 byte[] data = c.getBlob(c.getColumnIndex(SoundModelContract.KEY_DATA)); in getValidKeyphraseSoundModelForUser()
389 data = c.getBlob(c.getColumnIndex(SoundModelContract.KEY_DATA)); in SoundModelRecord()

12