Lines Matching refs:Blob

81     std::shared_ptr<Blob> cacheKey(new Blob(key, keySize, false));  in set()
88 std::shared_ptr<Blob> keyBlob(new Blob(key, keySize, true)); in set()
89 std::shared_ptr<Blob> valueBlob(new Blob(value, valueSize, true)); in set()
110 std::shared_ptr<Blob> valueBlob(new Blob(value, valueSize, true)); in set()
111 std::shared_ptr<Blob> oldValueBlob(index->getValue()); in set()
141 std::shared_ptr<Blob> cacheKey(new Blob(key, keySize, false)); in get()
151 std::shared_ptr<Blob> valueBlob(index->getValue()); in get()
170 std::shared_ptr<Blob> const& keyBlob = e.getKey(); in getFlattenedSize()
171 std::shared_ptr<Blob> const& valueBlob = e.getValue(); in getFlattenedSize()
196 std::shared_ptr<Blob> const& keyBlob = e.getKey(); in flatten()
197 std::shared_ptr<Blob> const& valueBlob = e.getValue(); in flatten()
307 BlobCache::Blob::Blob(const void* data, size_t size, bool copyData) : in Blob() function in android::BlobCache::Blob
316 BlobCache::Blob::~Blob() { in ~Blob()
322 bool BlobCache::Blob::operator<(const Blob& rhs) const { in operator <()
330 const void* BlobCache::Blob::getData() const { in getData()
334 size_t BlobCache::Blob::getSize() const { in getSize()
342 const std::shared_ptr<Blob>& key, const std::shared_ptr<Blob>& value): in CacheEntry()
362 std::shared_ptr<BlobCache::Blob> BlobCache::CacheEntry::getKey() const { in getKey()
366 std::shared_ptr<BlobCache::Blob> BlobCache::CacheEntry::getValue() const { in getValue()
370 void BlobCache::CacheEntry::setValue(const std::shared_ptr<Blob>& value) { in setValue()