HomeSort by relevance Sort by last modified time
    Searched refs:getBlob (Results 1 - 25 of 205) sorted by null

1 2 3 4 5 6 7 8 9

  /frameworks/ml/nn/driver/cache/nnCache/
nnCache.h 46 // When not in the initialized state the getBlob and setBlob
57 // in this state the getBlob and setBlob methods will return without
65 // getBlob attempts to retrieve the value blob associated with a given key
67 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,
75 const ssize_t size = getBlob(key, keySize, &valueVoid, alloc);
111 // the getBlob and setBlob methods will return without performing any cache
nnCache_test.cpp 67 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4));
78 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4));
92 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4));
100 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4));
140 size_t size = mCache->getBlob(&k, 1, NULL, 0);
204 ASSERT_EQ(ssize_t(valueSize), mCache->getBlob(key, keySize, buf, sizeof(buf)));
218 ASSERT_EQ(ssize_t(0), mCache->getBlob(key, keySize, buf, sizeof(buf)));
241 ASSERT_EQ(4, mCache->getBlob("abcd", 4, &bufPtr, malloc));
252 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4));
  /system/hardware/interfaces/wifi/keystore/1.0/
IKeystore.hal 44 getBlob(string key)
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowCursorWindowTest.java 36 assertThat(window.getBlob(0, 3)).isEqualTo(new byte[] {(byte) 0xba, (byte) 0xdc, (byte) 0xaf, (byte) 0xfe});
41 assertThat(window.getBlob(1, 3)).isEqualTo(null);
43 assertThat(window.getBlob(2, 3)).isEqualTo(new byte[]{});
  /frameworks/native/opengl/tests/EGLTest/
egl_cache_test.cpp 50 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4));
61 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4));
73 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4));
104 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4));
  /frameworks/support/core/ktx/src/main/java/androidx/core/database/
Cursor.kt 30 * @see Cursor.getBlob
32 inline fun Cursor.getBlob(columnName: String): ByteArray =
33 getBlob(getColumnIndexOrThrow(columnName))
110 * @see Cursor.getBlob
112 inline fun Cursor.getBlobOrNull(index: Int) = if (isNull(index)) null else getBlob(index)
188 * @see Cursor.getBlob
191 getColumnIndexOrThrow(columnName).let { if (isNull(it)) null else getBlob(it) }
  /packages/apps/Dialer/java/com/android/dialer/calllog/ui/
CoalescedAnnotatedCallLogCursorLoader.java 66 number = DialerPhoneNumber.parseFrom(cursor.getBlob(NUMBER));
73 coalescedIds = CoalescedIds.parseFrom(cursor.getBlob(COALESCED_IDS));
80 numberAttributes = NumberAttributes.parseFrom(cursor.getBlob(NUMBER_ATTRIBUTES));
  /frameworks/native/opengl/libs/EGL/
egl_cache.cpp 58 static EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize,
60 return egl_cache_t::get()->getBlob(key, keySize, value, valueSize);
105 android::setBlob, android::getBlob);
153 EGLsizeiANDROID egl_cache_t::getBlob(const void* key, EGLsizeiANDROID keySize,
egl_cache.h 45 // getBlob and setBlob methods will return without performing any cache
50 // in this state the getBlob and setBlob methods will return without
60 // getBlob attempts to retrieve the value blob associated with a given key
63 EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize,
89 // the getBlob and setBlob methods will return without performing any cache
  /frameworks/base/core/java/android/database/
AbstractWindowedCursor.java 43 public byte[] getBlob(int columnIndex) {
45 return mWindow.getBlob(mPos, columnIndex);
Cursor.java 227 byte[] getBlob(int columnIndex);
CursorWrapper.java 146 public byte[] getBlob(int columnIndex) {
147 return mCursor.getBlob(columnIndex);
MergeCursor.java 143 public byte[] getBlob(int column)
145 return mCursor.getBlob(column);
  /frameworks/base/core/tests/coretests/src/android/database/
MatrixCursorTest.java 38 assertNull(cursor.getBlob(0));
156 MoreAsserts.assertEquals(new byte[] {(byte) 0xaa, (byte) 0x55}, cursor.getBlob(6));
165 assertEquals(null, cursor.getBlob(6));
174 assertEquals(null, cursor.getBlob(6));
207 MoreAsserts.assertEquals(new byte[] {(byte) 0xaa, (byte) 0x55}, cursor.getBlob(6));
  /packages/apps/Dialer/java/com/android/dialer/voicemail/listui/
VoicemailCursorLoader.java 84 number = DialerPhoneNumber.parseFrom(cursor.getBlob(NUMBER));
90 numberAttributes = NumberAttributes.parseFrom(cursor.getBlob(NUMBER_ATTRIBUTES));
  /packages/apps/UnifiedEmail/src/com/android/mail/content/
ThreadSafeCursorWrapper.java 93 public byte[] getBlob(int column) {
96 return super.getBlob(column);
  /system/hardware/interfaces/wifi/keystore/1.0/default/include/wifikeystorehal/
keystore.h 32 Return<void> getBlob(const hidl_string& key, getBlob_cb _hidl_cb) override;
  /system/security/keystore/
keystore_get_wifi_hidl.cpp 58 Return<void> ret = service->getBlob(hidl_string(key, keyLength), cb);
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/
PaginatedCursor.java 135 mCursor.getBlob(col);
212 public byte[] getBlob(int column) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCursorWrapper.java 104 public byte[] getBlob(int i) {
105 return wrappedCursor.getBlob(i);
ShadowMatrixCursor.java 67 public byte[] getBlob(int column) {
  /frameworks/base/core/java/android/provider/
SyncStateContract.java 85 return c.getBlob(c.getColumnIndexOrThrow(Columns.DATA));
140 byte[] blob = c.getBlob(c.getColumnIndexOrThrow(Columns.DATA));
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtils_InsertHelperTest.java 135 byte[] value = cursor.getBlob(blobValueIndex);
167 value = cursor.getBlob(blobValueIndex);
231 byte[] value = cursor.getBlob(blobValueIndex);
277 value = cursor.getBlob(blobValueIndex);
  /system/hardware/interfaces/wifi/keystore/1.0/default/
keystore.cpp 18 Return<void> Keystore::getBlob(const hidl_string& key, getBlob_cb _hidl_cb) {
  /frameworks/support/content/src/main/java/androidx/contentpager/content/
InMemoryCursor.java 140 mBlobs[position] = cursor.getBlob(col);
206 public byte[] getBlob(int column) {
232 return getBlob(column) != null;

Completed in 567 milliseconds

1 2 3 4 5 6 7 8 9