| 239 | bool CudaBufferReader::supports_zero_copy() const { return true; } |
| 240 | |
| 241 | Result<int64_t> CudaBufferReader::DoTell() const { |
| 242 | RETURN_NOT_OK(CheckClosed()); |
| 243 | return position_; |
| 244 | } |
| 245 | |
| 246 | Result<int64_t> CudaBufferReader::DoGetSize() { |
| 247 | RETURN_NOT_OK(CheckClosed()); |
nothing calls this directly
no test coverage detected