| 50 | FL_NOEXCEPT : mInternal(), error_code(err), is_ok(false) {} |
| 51 | |
| 52 | bool DMABuffer::ok() const FL_NOEXCEPT { |
| 53 | return is_ok && mInternal != nullptr; |
| 54 | } |
| 55 | |
| 56 | fl::span<u8> DMABuffer::data() const FL_NOEXCEPT { |
| 57 | if (!ok()) { |
no outgoing calls
no test coverage detected