Function
register_breakpoint
(breakpoint_addresses: &mut FxHashMap<u64, BpId>, sb_bp: &SBBreakpoint)
Source from the content-addressed store, hash-verified
| 1172 | } |
| 1173 | |
| 1174 | fn register_breakpoint(breakpoint_addresses: &mut FxHashMap<u64, BpId>, sb_bp: &SBBreakpoint) { |
| 1175 | for sb_bp_loc in sb_bp.locations() { |
| 1176 | breakpoint_addresses.insert(sb_bp_loc.address().file_address() as u64, BpId(sb_bp.id())); |
| 1177 | } |
| 1178 | } |
| 1179 | |
| 1180 | fn get_rust_panic_source_file() -> SourceFile { |
| 1181 | SourceFile { |
Tested by
no test coverage detected