MCPcopy Create free account
hub / github.com/SeaQL/FireDBG.for.Rust / function_call

Method function_call

debugger/src/event.rs:121–130  ·  view source on GitHub ↗
(bp_id: crate::BpId, thread_id: u64, active_frame: &ActiveFrame)

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls 3

push_byteMethod · 0.80
integerMethod · 0.80
identifierMethod · 0.80

Tested by

no test coverage detected