Lines Matching refs:stream
411 std::unique_ptr<BlockAccessCipherStream> stream; in NewSequentialFile() local
412 status = provider_->CreateCipherStream(fname, options, prefixSlice, &stream); in NewSequentialFile()
416 …ue_ptr<SequentialFile>(new EncryptedSequentialFile(underlying.release(), stream.release(), prefixL… in NewSequentialFile()
449 std::unique_ptr<BlockAccessCipherStream> stream; in NewRandomAccessFile() local
450 status = provider_->CreateCipherStream(fname, options, prefixSlice, &stream); in NewRandomAccessFile()
454 …tr<RandomAccessFile>(new EncryptedRandomAccessFile(underlying.release(), stream.release(), prefixL… in NewRandomAccessFile()
490 std::unique_ptr<BlockAccessCipherStream> stream; in NewWritableFile() local
491 status = provider_->CreateCipherStream(fname, options, prefixSlice, &stream); in NewWritableFile()
495 …unique_ptr<WritableFile>(new EncryptedWritableFile(underlying.release(), stream.release(), prefixL… in NewWritableFile()
537 std::unique_ptr<BlockAccessCipherStream> stream; in ReopenWritableFile() local
538 status = provider_->CreateCipherStream(fname, options, prefixSlice, &stream); in ReopenWritableFile()
542 …unique_ptr<WritableFile>(new EncryptedWritableFile(underlying.release(), stream.release(), prefixL… in ReopenWritableFile()
579 std::unique_ptr<BlockAccessCipherStream> stream; in ReuseWritableFile() local
580 status = provider_->CreateCipherStream(fname, options, prefixSlice, &stream); in ReuseWritableFile()
584 …unique_ptr<WritableFile>(new EncryptedWritableFile(underlying.release(), stream.release(), prefixL… in ReuseWritableFile()
636 std::unique_ptr<BlockAccessCipherStream> stream; in NewRandomRWFile() local
637 status = provider_->CreateCipherStream(fname, options, prefixSlice, &stream); in NewRandomRWFile()
641 …unique_ptr<RandomRWFile>(new EncryptedRandomRWFile(underlying.release(), stream.release(), prefixL… in NewRandomRWFile()