| 90 | } |
| 91 | |
| 92 | int64_t BufferPool::PageHandle::len() const { |
| 93 | DCHECK(is_open()); |
| 94 | return page_->len; // Does not require locking. |
| 95 | } |
| 96 | |
| 97 | Status BufferPool::PageHandle::GetBuffer(const BufferHandle** buffer) const { |
| 98 | DCHECK(is_open()); |
no outgoing calls