Lines Matching refs:refs
29 self.refs: List[str] = list()
187 if call_matching_pairs and last_function and last_function.refs:
189 ignored_symbols = [ref for ref in last_function.refs if pair.symbol in ref]
192 … last_function.refs = [ref for ref in last_function.refs if last_ref != ref]
202 if target not in last_function.refs:
203 last_function.refs.append(target)
280 refs: List[Reference] = []
301 for target_rtl_func_name in source_rtl_func.calls + source_rtl_func.refs:
316 refs.append(Reference(sym_from, sym_to))
320 return symbols, refs
333 def list_refs_from_to_sections(refs: List[Reference], from_sections: List[str], to_sections: List[s…
335 for ref in refs:
414 _, refs = get_symbols_and_refs(rtl_list, args.elf_file, ignore_pairs)
420 refs, from_sections, to_sections
425 for r in refs: