AK: Rename Stream::read_entire_buffer to Stream::read_until_filled

No functional changes.
This commit is contained in:
Tim Schumacher 2023-03-01 15:27:35 +01:00 committed by Linus Groh
commit a3f73e7d85
Notes: sideshowbarker 2024-07-17 03:05:16 +09:00
31 changed files with 58 additions and 58 deletions

View file

@ -11,7 +11,7 @@
namespace AK {
ErrorOr<void> Stream::read_entire_buffer(Bytes buffer)
ErrorOr<void> Stream::read_until_filled(Bytes buffer)
{
size_t nread = 0;
while (nread < buffer.size()) {