Searched refs:getBlob (Results 1 - 22 of 22) sorted by relevance

/frameworks/native/opengl/tests/EGLTest/
H A Degl_cache_test.cpp46 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4));
57 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4));
69 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4));
103 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4));
/frameworks/native/opengl/libs/EGL/
H A Degl_cache.h43 // getBlob and setBlob methods will return without performing any cache
48 // in this state the getBlob and setBlob methods will return without
58 // getBlob attempts to retrieve the value blob associated with a given key
61 EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize,
95 // the getBlob and setBlob methods will return without performing any cache
H A Degl_cache.cpp66 static EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize, function in namespace:android
68 return egl_cache_t::get()->getBlob(key, keySize, value, valueSize);
114 android::setBlob, android::getBlob);
174 EGLsizeiANDROID egl_cache_t::getBlob(const void* key, EGLsizeiANDROID keySize, function in class:egl_cache_t
/frameworks/base/core/java/android/database/
H A DAbstractWindowedCursor.java43 public byte[] getBlob(int columnIndex) { method in class:AbstractWindowedCursor
45 return mWindow.getBlob(mPos, columnIndex);
H A DCursorWrapper.java121 public byte[] getBlob(int columnIndex) { method in class:CursorWrapper
122 return mCursor.getBlob(columnIndex);
H A DCursor.java224 byte[] getBlob(int columnIndex); method in interface:Cursor
H A DMergeCursor.java143 public byte[] getBlob(int column) method in class:MergeCursor
145 return mCursor.getBlob(column);
H A DMatrixCursor.java275 public byte[] getBlob(int column) { method in class:MatrixCursor
H A DAbstractCursor.java98 // TODO implement getBlob in all cursor types
99 public byte[] getBlob(int column) { method in class:AbstractCursor
100 throw new UnsupportedOperationException("getBlob is not supported");
H A DCursorWindow.java396 public byte[] getBlob(int row, int column) { method in class:CursorWindow
H A DDatabaseUtils.java296 final byte[] value = cursor.getBlob(i);
718 values.put(columns[i], cursor.getBlob(i));
/frameworks/base/core/tests/coretests/src/android/database/
H A DMatrixCursorTest.java38 assertNull(cursor.getBlob(0));
157 MoreAsserts.assertEquals(new byte[] {(byte) 0xaa, (byte) 0x55}, cursor.getBlob(6));
H A DCursorWindowTest.java107 assertTrue(Arrays.equals(blob, window.getBlob(0, 6)));
H A DDatabaseCursorTest.java121 byte[] cBlob = c.getBlob(bCol);
/frameworks/base/core/java/android/provider/
H A DSyncStateContract.java85 return c.getBlob(c.getColumnIndexOrThrow(Columns.DATA));
140 byte[] blob = c.getBlob(c.getColumnIndexOrThrow(Columns.DATA));
H A DContactsContract.java1873 * byte[] data = cursor.getBlob(0);
1982 byte[] data = cursor.getBlob(0);
2909 cv.put(key, cursor.getBlob(columnIndex));
H A DContacts.java613 byte[] data = cursor.getBlob(0);
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java88 public byte[] getBlob(int columnIndex) { method in class:MockCursor
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DSummarizerDBHelper.java127 return AbstractResult.create(cursor.getBlob(cursor.getColumnIndex(KEY_BYTES)));
/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java232 public byte[] getBlob(int column) method in class:SortCursor
234 return mCursor.getBlob(column);
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBordeauxSessionStorage.java110 byte[] model = cursor.getBlob(cursor.getColumnIndex(COLUMN_MODEL));
/frameworks/ex/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java760 final byte[] photoBytes = photoCursor.getBlob(PhotoQuery.PHOTO);
792 photoBytes = photoCursor.getBlob(PhotoQuery.PHOTO);

Completed in 368 milliseconds