| 244 | } |
| 245 | |
| 246 | Result<int64_t> CudaBufferReader::DoGetSize() { |
| 247 | RETURN_NOT_OK(CheckClosed()); |
| 248 | return size_; |
| 249 | } |
| 250 | |
| 251 | Status CudaBufferReader::DoSeek(int64_t position) { |
| 252 | RETURN_NOT_OK(CheckClosed()); |
nothing calls this directly
no test coverage detected