Searched refs:newCache (Results 1 – 1 of 1) sorted by relevance
168 std::unique_ptr<uint8_t[]> newCache; in readAt() local172 newCache.reset(new uint8_t[newCacheBufferSize]); in readAt()173 dst = newCache.get(); in readAt()209 if (newCache.get() != nullptr) { in readAt()210 mCache.reset(newCache.release()); in readAt()226 uint8_t* newCache = new uint8_t[newCacheBufferSize]; in readAt() local227 memcpy(newCache, mCache.get(), mCachedSize); in readAt()228 mCache.reset(newCache); in readAt()