Lines Matching refs:vuidCounts
551 help='Specify maximum VUID instead of the value wired into vuidCounts.py')
584 # Moved here since vuidCounts is only needed in the internal
586 from vuidCounts import vuidCounts
588 if args.branch not in vuidCounts:
589 logErr('Branch', args.branch, 'not in vuidCounts, cannot continue')
590 maxVUID = vuidCounts[args.branch][1]
591 startVUID = vuidCounts[args.branch][2]
647 vuidCounts[args.branch][2] = args.nextvu
650 reflow_count_file_path += '/vuidCounts.py'
656 print('vuidCounts = {', file=reflow_count_file)
657 for key in sorted(vuidCounts.keys(), key=lambda k: vuidCounts[k][0]):
658 counts = vuidCounts[key]
664 logWarn('Cannot open output count file vuidCounts.py', ':', sys.exc_info()[0])