Searched refs:Blob (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/include/utils/
H A DBlobCache.h128 // A Blob is an immutable sized unstructured data blob.
129 class Blob : public RefBase { class in class:android::BlobCache
131 Blob(const void* data, size_t size, bool copyData);
132 ~Blob();
134 bool operator<(const Blob& rhs) const;
141 Blob(const Blob&);
142 void operator=(const Blob&);
150 // mOwnsData indicates whether or not this Blob object should free the
151 // memory pointed to by mData when the Blob get
[all...]
/frameworks/native/libs/utils/
H A DBlobCache.cpp80 sp<Blob> dummyKey(new Blob(key, keySize, false));
87 sp<Blob> keyBlob(new Blob(key, keySize, true));
88 sp<Blob> valueBlob(new Blob(value, valueSize, true));
109 sp<Blob> valueBlob(new Blob(value, valueSize, true));
110 sp<Blob> oldValueBlob(mCacheEntries[index].getValue());
140 sp<Blob> dummyKe
312 BlobCache::Blob::Blob(const void* data, size_t size, bool copyData): function in class:android::BlobCache::Blob
[all...]
/frameworks/native/include/binder/
H A DParcel.h246 class Blob { class in class:android::Parcel
248 Blob();
249 ~Blob();
264 class ReadableBlob : public Blob {
270 class WritableBlob : public Blob {
/frameworks/native/libs/binder/
H A DParcel.cpp753 int fd = ashmem_create_region("Parcel Blob", len);
1562 // --- Parcel::Blob ---
1564 Parcel::Blob::Blob() : function in class:android::Parcel::Blob
1568 Parcel::Blob::~Blob() {
1572 void Parcel::Blob::release() {
1579 void Parcel::Blob::init(bool mapped, void* data, size_t size) {
1585 void Parcel::Blob::clear() {

Completed in 5016 milliseconds