Home
last modified time | relevance | path

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

12

/frameworks/ml/nn/driver/cache/nnCache/
DnnCache_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()
90 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4)); in TEST_P()
98 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4)); in TEST_P()
138 size_t size = mCache->getBlob(&k, 1, NULL, 0); in TEST_P()
202 ASSERT_EQ(ssize_t(valueSize), mCache->getBlob(key, keySize, buf, sizeof(buf))); in yesStringBlob()
216 ASSERT_EQ(ssize_t(0), mCache->getBlob(key, keySize, buf, sizeof(buf))); in noStringBlob()
239 ASSERT_EQ(4, mCache->getBlob("abcd", 4, &bufPtr, malloc)); in TEST_P()
250 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4)); in TEST_P()
DnnCache.h67 ssize_t getBlob(const void* key, ssize_t keySize,
69 ssize_t getBlob(const void* key, ssize_t keySize,
72 ssize_t getBlob(const void* key, size_t keySize, in getBlob() function
75 const ssize_t size = getBlob(key, keySize, &valueVoid, alloc); in getBlob()
DnnCache.cpp103 ssize_t NNCache::getBlob(const void* key, ssize_t keySize, in getBlob() function in android::NNCache
119 ssize_t NNCache::getBlob(const void* key, ssize_t keySize, in getBlob() function in android::NNCache
/frameworks/native/opengl/tests/EGLTest/
Degl_cache_test.cpp50 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4)); in TEST_F()
61 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4)); in TEST_F()
73 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4)); in TEST_F()
104 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4)); in TEST_F()
/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.java107 assertTrue(Arrays.equals(blob, window.getBlob(0, 6))); in doTestValues()
/frameworks/native/opengl/libs/EGL/
Degl_cache.cpp58 static EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize, in getBlob() function
60 return egl_cache_t::get()->getBlob(key, keySize, value, valueSize); in getBlob()
105 android::setBlob, android::getBlob); in initialize()
153 EGLsizeiANDROID egl_cache_t::getBlob(const void* key, EGLsizeiANDROID keySize, in getBlob() function in android::egl_cache_t
Degl_cache.h63 EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize,
/frameworks/base/core/java/android/database/
DAbstractWindowedCursor.java45 public byte[] getBlob(int columnIndex) { in getBlob() method in AbstractWindowedCursor
47 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.java143 public byte[] getBlob(int column) in getBlob() method in MergeCursor
145 return mCursor.getBlob(column); in getBlob()
DCursorWrapper.java150 public byte[] getBlob(int columnIndex) { in getBlob() method in CursorWrapper
151 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.java231 byte[] getBlob(int columnIndex); in getBlob() method
DMatrixCursor.java312 public byte[] getBlob(int column) { in getBlob() method in MatrixCursor
/frameworks/base/services/backup/java/com/android/server/backup/encryption/storage/
DTertiaryKeysTable.java88 cursor.getBlob( in getKey()
124 cursor.getBlob( in getAllKeys()
/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()
1040 return cursor.getBlob(idx); in getBytes()
1123 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/opt/chips/src/com/android/ex/chips/
DDefaultPhotoManager.java97 return photoCursor.getBlob(PhotoQuery.PHOTO); in fetchPhotoAsync()
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/
DSoundTriggerDbHelper.java112 byte[] data = c.getBlob(c.getColumnIndex( in getGenericSoundModel()
/frameworks/base/test-mock/src/android/test/mock/
DMockCursor.java104 public byte[] getBlob(int columnIndex) { in getBlob() method in MockCursor
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
DDatabaseHelper.java244 byte[] data = c.getBlob(c.getColumnIndex(SoundModelContract.KEY_DATA)); in getKeyphraseSoundModel()
348 data = c.getBlob(c.getColumnIndex(SoundModelContract.KEY_DATA)); in SoundModelRecord()
/frameworks/base/services/core/java/com/android/server/net/watchlist/
DWatchlistReportDbHelper.java166 String digestHexStr = HexDump.toHexString(c.getBlob(INDEX_DIGEST)); in getAggregatedRecords()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCarrierInfoManager.java92 byte[] carrier_key = findCursor.getBlob(0); in getCarrierInfoForImsiEncryption()

12