(bp_id: crate::BpId, thread_id: u64, active_frame: &ActiveFrame)
| 119 | } |
| 120 | |
| 121 | pub fn function_call(bp_id: crate::BpId, thread_id: u64, active_frame: &ActiveFrame) -> Bytes { |
| 122 | let mut bytes = Bytes::new(); |
| 123 | bytes.push_byte(b'F'); |
| 124 | bytes.integer(bp_id.0); |
| 125 | bytes.integer(thread_id); |
| 126 | bytes.integer(active_frame.frame_id); |
| 127 | bytes.integer(active_frame.stack_pointer); |
| 128 | bytes.identifier(&active_frame.function_name); |
| 129 | bytes |
| 130 | } |
| 131 | |
| 132 | pub fn function_return( |
| 133 | bp_id: crate::BpId, |
nothing calls this directly
no test coverage detected