(binary)
| 384 | thread_pool = ThreadPool(processes=args.num_processes) |
| 385 | |
| 386 | def processing_fn(binary): |
| 387 | return process_binary(dump_syms, objcopy, binary, args.dest_dir) |
| 388 | |
| 389 | for result in thread_pool.imap_unordered(processing_fn, enumerate_binaries(args)): |
| 390 | if not result: |
nothing calls this directly
no test coverage detected