| 2135 | } |
| 2136 | |
| 2137 | void TmpWriteHandle::WaitForWrite() { |
| 2138 | unique_lock<mutex> lock(write_state_lock_); |
| 2139 | while (write_in_flight_) write_complete_cv_.Wait(lock); |
| 2140 | } |
| 2141 | |
| 2142 | Status TmpWriteHandle::EncryptAndHash( |
| 2143 | MemRange buffer, const BufferPoolClientCounters* counters) { |
no test coverage detected