| 165 | } |
| 166 | |
| 167 | Future<Void> AsyncFileEncrypted::write(void const* data, int length, int64_t offset) { |
| 168 | return AsyncFileEncryptedImpl::write(Reference<AsyncFileEncrypted>::addRef(this), data, length, offset); |
| 169 | } |
| 170 | |
| 171 | Future<Void> AsyncFileEncrypted::zeroRange(int64_t offset, int64_t length) { |
| 172 | return AsyncFileEncryptedImpl::zeroRange(this, offset, length); |
no test coverage detected