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

1 2 3 4 5

  /system/hardware/interfaces/wifi/keystore/1.0/default/
keystore.cpp 18 Return<void> Keystore::getBlob(const hidl_string& key, getBlob_cb _hidl_cb) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMatrixCursor.java 67 public byte[] getBlob(int column) {
ShadowCursorWrapper.java 104 public byte[] getBlob(int i) {
105 return wrappedCursor.getBlob(i);
ShadowSQLiteCursor.java 101 public byte[] getBlob(int columnIndex) {
  /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.cpp 103 ssize_t NNCache::getBlob(const void* key, ssize_t keySize,
108 ALOGW("nnCache::getBlob: negative sizes are not allowed");
119 ssize_t NNCache::getBlob(const void* key, ssize_t keySize,
124 ALOGW("nnCache::getBlob: negative sizes are not allowed");
  /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,
  /frameworks/base/core/java/android/database/
AbstractWindowedCursor.java 43 public byte[] getBlob(int columnIndex) {
45 return mWindow.getBlob(mPos, columnIndex);
MatrixCursor.java 300 public byte[] getBlob(int column) {
MergeCursor.java 143 public byte[] getBlob(int column)
145 return mCursor.getBlob(column);
Cursor.java 227 byte[] getBlob(int columnIndex);
CursorWrapper.java 146 public byte[] getBlob(int columnIndex) {
147 return mCursor.getBlob(columnIndex);
AbstractCursor.java 113 // TODO implement getBlob in all cursor types
115 public byte[] getBlob(int column) {
116 throw new UnsupportedOperationException("getBlob is not supported");
CursorWindow.java 427 public byte[] getBlob(int row, int column) {
  /packages/apps/UnifiedEmail/src/com/android/mail/content/
ThreadSafeCursorWrapper.java 93 public byte[] getBlob(int column) {
96 return super.getBlob(column);
  /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/tester/android/database/
TestCursor.java 98 public byte[] getBlob(int columnIndex) {
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/fakes/
BaseCursor.java 101 public byte[] getBlob(int columnIndex) {
RoboCursor.java 83 public byte[] getBlob(int columnIndex) {
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowCursorWrapper.java 112 public byte[] getBlob(int i) {
113 return wrappedCursor.getBlob(i);
  /frameworks/base/core/java/com/android/internal/database/
SortCursor.java 232 public byte[] getBlob(int column)
234 return mCursor.getBlob(column);
  /frameworks/base/test-mock/src/android/test/mock/
MockCursor.java 102 public byte[] getBlob(int columnIndex) {
  /libcore/ojluni/src/main/java/java/sql/
CallableStatement.java 463 Blob getBlob (int parameterIndex) throws SQLException;
    [all...]
  /frameworks/support/content/src/androidTest/java/androidx/contentpager/content/
TestContentProvider.java 313 assertEquals(createCellValue(row, column), cursor.getBlob(column));
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_TestDataBuilder.java 222 assertEquals(value, mCursor.getBlob(getColumnIndex(columnName)));
226 assertNotNull(mCursor.getBlob(getColumnIndex(columnName)));
230 assertNull(mCursor.getBlob(getColumnIndex(columnName)));

Completed in 337 milliseconds

1 2 3 4 5