MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / print_fxn

Function print_fxn

tools/WCS.py:304–314  ·  view source on GitHub ↗
(row_format, fxn_dict2)

Source from the content-addressed store, hash-verified

302def print_all_fxns(call_graph):
303
304 def print_fxn(row_format, fxn_dict2):
305 unresolved = fxn_dict2['unresolved_calls']
306 stack = str(fxn_dict2['wcs'])
307 if unresolved:
308 unresolved_str = '({})'.format(' ,'.join(unresolved))
309 if stack != 'unbounded':
310 stack = "unbounded:" + stack
311 else:
312 unresolved_str = ''
313
314 print(row_format.format(fxn_dict2['tu'], fxn_dict2['demangledName'], stack, unresolved_str))
315
316 def get_order(val):
317 if val == 'unbounded':

Callers 1

print_all_fxnsFunction · 0.85

Calls 1

joinMethod · 0.45

Tested by

no test coverage detected