MCPcopy Create free account
hub / github.com/aff3ct/aff3ct / get_task_ios

Function get_task_ios

scripts/debug_parser/aff3ct_debug_parser.py:261–269  ·  view source on GitHub ↗
(lines, key)

Source from the content-addressed store, hash-verified

259
260
261def get_task_ios(lines, key):
262 for i in range(0, len(lines)):
263 if key in lines[i]:
264 line = lines[i]
265 line = line.replace("const ", "")
266 line = line[line.find("(") + 1: line.find(")")]
267 tsk_ios = line.split(', ')
268 return tsk_ios
269 return []
270
271
272def get_output_structures(lines, key):

Callers 1

get_output_structuresFunction · 0.85

Calls 1

splitMethod · 0.45

Tested by

no test coverage detected