Function cwe_checker_lib::analysis::callgraph::find_call_sequences_to_target
source · pub fn find_call_sequences_to_target(
callgraph: &CallGraph<'_>,
source_sub_tid: &Tid,
target_sub_tid: &Tid
) -> BTreeSet<Tid>
Expand description
Collect and return all call TIDs of call sequences that start in the function given by the source_sub_tid
and end in the function given by the target_sub_tid
.