(&self, bar_index: u32, offset: u64)
| 236 | } |
| 237 | |
| 238 | fn msix_table_accessed(&self, bar_index: u32, offset: u64) -> bool { |
| 239 | if let Some(msix) = &self.msix { |
| 240 | return msix.table_accessed(bar_index, offset); |
| 241 | } |
| 242 | |
| 243 | false |
| 244 | } |
| 245 | |
| 246 | fn msix_write_table(&mut self, offset: u64, data: &[u8]) { |
| 247 | if let Some(msix) = &mut self.msix { |
no test coverage detected