(sections: &mut [Section], address: u64)
| 169 | } |
| 170 | |
| 171 | fn find_code_section(sections: &mut [Section], address: u64) -> Option<&mut Section> { |
| 172 | sections.iter_mut().find(|section| { |
| 173 | section.kind == SectionKind::Code |
| 174 | && address >= section.address |
| 175 | && address < section.address + section.size |
| 176 | }) |
| 177 | } |
| 178 | |
| 179 | fn decode_delta( |
| 180 | endianness: Endianness, |
no test coverage detected