Searched refs:FilePackerStream (Results 1 – 5 of 5) sorted by relevance
33 FilePackerStream::FilePackerStream(const std::string &filePath) in FilePackerStream() function in OHOS::Media::FilePackerStream65 FilePackerStream::FilePackerStream(const int fd) in FilePackerStream() function in OHOS::Media::FilePackerStream78 FilePackerStream::~FilePackerStream() in ~FilePackerStream()86 bool FilePackerStream::Write(const uint8_t *buffer, uint32_t size) in Write()105 void FilePackerStream::Flush() in Flush()112 int64_t FilePackerStream::BytesWritten() in BytesWritten()117 ImagePlugin::OutputStreamType FilePackerStream::GetType() in GetType()122 int FilePackerStream::GetFd() in GetFd()
441 return new (std::nothrow) FilePackerStream(dupFd); in ToOutputDataStream()
25 class FilePackerStream : public PackerStream {27 explicit FilePackerStream(const std::string &filePath);28 explicit FilePackerStream(const int fd);29 ~FilePackerStream() override;37 DISALLOW_COPY(FilePackerStream);
175 FilePackerStream *stream = new (std::nothrow) FilePackerStream(filePath); in StartPacking()181 packerStream_ = std::unique_ptr<FilePackerStream>(stream); in StartPacking()192 FilePackerStream *stream = new (std::nothrow) FilePackerStream(fd); in StartPacking()198 packerStream_ = std::unique_ptr<FilePackerStream>(stream); in StartPacking()
40 *FilePackerStream*;