Searched defs:getBlob (Results 1 - 13 of 13) sorted by relevance

/frameworks/ml/nn/driver/cache/nnCache/
H A DnnCache.h46 // 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, function in class:android::NNCache
75 const ssize_t size = getBlob(key, keySize, &valueVoid, alloc);
111 // the getBlob and setBlob methods will return without performing any cache
H A DnnCache.cpp103 ssize_t NNCache::getBlob(const void* key, ssize_t keySize, function in class:android::NNCache
108 ALOGW("nnCache::getBlob: negative sizes are not allowed");
119 ssize_t NNCache::getBlob(const void* key, ssize_t keySize, function in class:android::NNCache
124 ALOGW("nnCache::getBlob: negative sizes are not allowed");
/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 DMatrixCursor.java300 public byte[] getBlob(int column) { method in class:MatrixCursor
H A DMergeCursor.java143 public byte[] getBlob(int column) method in class:MergeCursor
145 return mCursor.getBlob(column);
H A DCursor.java227 byte[] getBlob(int columnIndex); method in interface:Cursor
H A DCursorWrapper.java146 public byte[] getBlob(int columnIndex) { method in class:CursorWrapper
147 return mCursor.getBlob(columnIndex);
H A DAbstractCursor.java113 // TODO implement getBlob in all cursor types
115 public byte[] getBlob(int column) { method in class:AbstractCursor
116 throw new UnsupportedOperationException("getBlob is not supported");
H A DCursorWindow.java427 public byte[] getBlob(int row, int column) { method in class:CursorWindow
/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/native/opengl/libs/EGL/
H A Degl_cache.cpp58 static EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize, function in namespace:android
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, function in class:egl_cache_t
/frameworks/base/test-mock/src/android/test/mock/
H A DMockCursor.java102 public byte[] getBlob(int columnIndex) { method in class:MockCursor
/frameworks/support/content/src/main/java/androidx/contentpager/content/
H A DInMemoryCursor.java140 mBlobs[position] = cursor.getBlob(col);
206 public byte[] getBlob(int column) { method in class:InMemoryCursor
232 return getBlob(column) != null;

Completed in 235 milliseconds