MCPcopy Create free account
hub / github.com/FastLED/FastLED / batch_demangle

Function batch_demangle

ci/bin_bloat_analysis.py:114–125  ·  view source on GitHub ↗
(names: list[str])

Source from the content-addressed store, hash-verified

112
113
114def batch_demangle(names: list[str]) -> dict[str, str]:
115 if not names:
116 return {}
117 proc = subprocess.run(
118 [str(CXXFILT)],
119 input="\n".join(names),
120 capture_output=True,
121 text=True,
122 check=True,
123 )
124 out_lines = proc.stdout.splitlines()
125 return dict(zip(names, out_lines))
126
127
128def batch_addr2line(addrs: list[int]) -> dict[int, str]:

Callers 1

mainFunction · 0.85

Calls 1

runMethod · 0.45

Tested by

no test coverage detected