summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCompress/Zlib.h
diff options
context:
space:
mode:
authorTim Schumacher <timschumi@gmx.de>2023-02-24 22:38:01 +0100
committerLinus Groh <mail@linusgroh.de>2023-03-13 15:16:20 +0000
commitd5871f5717579fab3c093537c44e3cd467560cdd (patch)
tree9e7e118ae5b7642f0168c5302ee74e9e483ae91c /Userland/Libraries/LibCompress/Zlib.h
parent1d5b45f7d938b15db9da9b12dc4d8b373abd6c7c (diff)
downloadserenity-d5871f5717579fab3c093537c44e3cd467560cdd.zip
AK: Rename Stream::{read,write} to Stream::{read_some,write_some}
Similar to POSIX read, the basic read and write functions of AK::Stream do not have a lower limit of how much data they read or write (apart from "none at all"). Rename the functions to "read some [data]" and "write some [data]" (with "data" being omitted, since everything here is reading and writing data) to make them sufficiently distinct from the functions that ensure to use the entire buffer (which should be the go-to function for most usages). No functional changes, just a lot of new FIXMEs.
Diffstat (limited to 'Userland/Libraries/LibCompress/Zlib.h')
-rw-r--r--Userland/Libraries/LibCompress/Zlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibCompress/Zlib.h b/Userland/Libraries/LibCompress/Zlib.h
index 44eb4e1bf4..2039973f2b 100644
--- a/Userland/Libraries/LibCompress/Zlib.h
+++ b/Userland/Libraries/LibCompress/Zlib.h
@@ -67,8 +67,8 @@ public:
static ErrorOr<NonnullOwnPtr<ZlibCompressor>> construct(MaybeOwned<Stream>, ZlibCompressionLevel = ZlibCompressionLevel::Default);
~ZlibCompressor();
- virtual ErrorOr<Bytes> read(Bytes) override;
- virtual ErrorOr<size_t> write(ReadonlyBytes) override;
+ virtual ErrorOr<Bytes> read_some(Bytes) override;
+ virtual ErrorOr<size_t> write_some(ReadonlyBytes) override;
virtual bool is_eof() const override;
virtual bool is_open() const override;
virtual void close() override;