mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:02:45 +00:00 
			
		
		
		
	AK: Rename Stream::write_entire_buffer to Stream::write_until_depleted
No functional changes.
This commit is contained in:
		
							parent
							
								
									a3f73e7d85
								
							
						
					
					
						commit
						ecd1862859
					
				
					 46 changed files with 141 additions and 141 deletions
				
			
		|  | @ -89,7 +89,7 @@ ErrorOr<size_t> FixedMemoryStream::write_some(ReadonlyBytes bytes) | |||
|     return nwritten; | ||||
| } | ||||
| 
 | ||||
| ErrorOr<void> FixedMemoryStream::write_entire_buffer(ReadonlyBytes bytes) | ||||
| ErrorOr<void> FixedMemoryStream::write_until_depleted(ReadonlyBytes bytes) | ||||
| { | ||||
|     if (remaining() < bytes.size()) | ||||
|         return Error::from_string_view_or_print_error_and_return_errno("Write of entire buffer ends past the memory area"sv, EINVAL); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Tim Schumacher
						Tim Schumacher