| 52 | auto IoBuffer::GetBuffer() -> std::span<uint8_t> { return {data_, size_}; } |
| 53 | |
| 54 | auto IoBuffer::IsValid() const -> bool { return data_ != nullptr; } |
| 55 | |
| 56 | auto IoBuffer::ToDmaRegion(VirtToPhysFunc v2p) const -> DmaRegion { |
| 57 | return DmaRegion{ |
nothing calls this directly
no outgoing calls
no test coverage detected