/frameworks/native/opengl/tests/EGLTest/ |
D | egl_cache_test.cpp | 46 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4)); in TEST_F() 57 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4)); in TEST_F() 69 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4)); in TEST_F() 103 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4)); in TEST_F()
|
/frameworks/base/core/tests/coretests/src/android/database/ |
D | MatrixCursorTest.java | 38 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()
|
D | CursorWindowTest.java | 107 assertTrue(Arrays.equals(blob, window.getBlob(0, 6))); in doTestValues()
|
D | DatabaseCursorTest.java | 121 byte[] cBlob = c.getBlob(bCol); in testBlob()
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_cache.cpp | 67 static EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize, in getBlob() function 69 return egl_cache_t::get()->getBlob(key, keySize, value, valueSize); in getBlob() 115 android::setBlob, android::getBlob); in initialize() 172 EGLsizeiANDROID egl_cache_t::getBlob(const void* key, EGLsizeiANDROID keySize, in getBlob() function in android::egl_cache_t
|
D | egl_cache.h | 61 EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize,
|
/frameworks/base/core/java/android/database/ |
D | AbstractWindowedCursor.java | 43 public byte[] getBlob(int columnIndex) { in getBlob() method in AbstractWindowedCursor 45 return mWindow.getBlob(mPos, columnIndex); in getBlob()
|
D | CursorWrapper.java | 146 public byte[] getBlob(int columnIndex) { in getBlob() method in CursorWrapper 147 return mCursor.getBlob(columnIndex); in getBlob()
|
D | MergeCursor.java | 143 public byte[] getBlob(int column) in getBlob() method in MergeCursor 145 return mCursor.getBlob(column); in getBlob()
|
D | Cursor.java | 227 byte[] getBlob(int columnIndex); in getBlob() method
|
D | MatrixCursor.java | 300 public byte[] getBlob(int column) { in getBlob() method in MatrixCursor
|
D | AbstractCursor.java | 114 public byte[] getBlob(int column) { in getBlob() method in AbstractCursor
|
D | CursorWindow.java | 400 public byte[] getBlob(int row, int column) { in getBlob() method in CursorWindow
|
D | DatabaseUtils.java | 294 final byte[] value = cursor.getBlob(i); in cursorFillWindow() 738 values.put(columns[i], cursor.getBlob(i)); in cursorRowToContentValues()
|
/frameworks/base/core/java/android/provider/ |
D | SyncStateContract.java | 85 return c.getBlob(c.getColumnIndexOrThrow(Columns.DATA)); in get() 140 byte[] blob = c.getBlob(c.getColumnIndexOrThrow(Columns.DATA)); in getWithUri()
|
D | Contacts.java | 612 byte[] data = cursor.getBlob(0); in openContactPhotoInputStream()
|
D | ContactsContract.java | 2026 byte[] data = cursor.getBlob(0); in openContactPhotoInputStream() 3003 cv.put(key, cursor.getBlob(columnIndex)); in getEntityAndIncrementCursor()
|
/frameworks/base/core/java/com/android/internal/database/ |
D | SortCursor.java | 232 public byte[] getBlob(int column) in getBlob() method in SortCursor 234 return mCursor.getBlob(column); in getBlob()
|
/frameworks/opt/chips/src/com/android/ex/chips/ |
D | DefaultPhotoManager.java | 97 return photoCursor.getBlob(PhotoQuery.PHOTO); in fetchPhotoAsync()
|
/frameworks/base/test-runner/src/android/test/mock/ |
D | MockCursor.java | 99 public byte[] getBlob(int columnIndex) { in getBlob() method in MockCursor
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
D | RecentsProvider.java | 314 final byte[] rawStack = cursor.getBlob( in purgeByAuthority() 348 final byte[] rawStack = cursor.getBlob( in purgeByAuthority()
|
D | RecentsCreateFragment.java | 167 final byte[] rawStack = cursor.getBlob( in loadInBackground()
|
D | BaseActivity.java | 551 final byte[] rawStack = cursor.getBlob( in doInBackground()
|
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
D | BordeauxSessionStorage.java | 110 byte[] model = cursor.getBlob(cursor.getColumnIndex(COLUMN_MODEL)); in getSessionFromCursor()
|
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/ |
D | DatabaseHelper.java | 179 byte[] data = c.getBlob(c.getColumnIndex(SoundModelContract.KEY_DATA)); in getKeyphraseSoundModel()
|