/tools/u_boot_pylib/ |
A D | tools.py | 589 status = '' 595 print(chr(8) * (len(status) + 1), '\r', end=' ') 600 status = r'%10d MiB [%3d%%]' % (done // 1024 // 1024, 602 status = status + chr(8) * (len(status) + 1) 603 print(status, end=' ')
|
A D | LICENSE | 255 of preserving the free status of all derivatives of our free software and
|
/tools/patman/ |
A D | cmdline.py | 53 def exit(self, status=0, message=None): argument 57 super().exit(status, message) 363 status = subparsers.add_parser('status', aliases=ALIASES['status'], 365 _add_show_comments(status) 366 status.add_argument( 369 status.add_argument('-f', '--force', action='store_true', 371 status.add_argument('-T', '--single-thread', action='store_true', 373 return status
|
A D | func_test.py | 32 from patman import status 672 _, patches = loop.run_until_complete(status.check_status(1234, 674 status.check_patch_count(0, len(patches)) 682 _, patches = loop.run_until_complete(status.check_status(1234, pwork)) 778 status.compare_with_series(series, patches)) 787 status.compare_with_series(series, patches)) 798 status.compare_with_series(series, patches)) 809 status.compare_with_series(series, patches)) 823 status.compare_with_series(series, patches)) 1045 status.check_and_show_status( [all …]
|
A D | patchwork.py | 210 if response.status != 200: 835 for patch_data, status in zip(patch_list, patch_status): 836 status.series_data = patch_data 837 patches.append(status)
|
A D | control.py | 110 from patman import status 112 status.check_and_show_status(series, link, branch, dest_branch, force, 204 cser.status(pwork, args.series, args.version, args.show_comments,
|
A D | patman.rst | 248 collected ('patman status'). 455 patman status 478 patman status -d mtrr4 487 patman -b mtrr4 status 602 patman status -d us-cmd2 609 patman status -C 732 track the status 791 status (st) 792 Run 'patman status' on a series. This is similar to 'patman status' 907 patman status -d video2 [all …]
|
A D | README.rst | 248 collected ('patman status'). 455 patman status 478 patman status -d mtrr4 487 patman -b mtrr4 status 602 patman status -d us-cmd2 609 patman status -C 732 track the status 791 status (st) 792 Run 'patman status' on a series. This is similar to 'patman status' 907 patman status -d video2 [all …]
|
A D | cseries.py | 22 from patman import status 927 def status(self, pwork, series, version, show_comments, member in Cseries 944 status.check_and_show_status(
|
A D | cser_helper.py | 30 from patman import status 1306 _, new_rtag_list = status.do_show_status(
|
A D | test_cseries.py | 3395 cser.status(pwork, 'second', 2, False) 3402 cser.status(pwork, 'second', 2, False) 3408 cser.status(pwork, 'second', 2, show_comments=True) 3413 cser.status(pwork, 'second', 2, show_comments=True, 3429 cser.status(pwork, 'second', 2, show_comments=True) 3434 cser.status(pwork, 'second', 2, show_comments=True,
|
/tools/binman/ |
A D | bintool.py | 256 status = collections.defaultdict(list) 260 status[result].append(name) 269 show_status(col.GREEN, 'Already present', status[PRESENT]) 270 show_status(col.GREEN, 'Tools fetched', status[FETCHED]) 271 if status[FAIL]: 272 show_status(col.RED, 'Failures', status[FAIL]) 273 return not status[FAIL]
|
A D | README.rst | 2130 Exit status 2143 -M is passed to binman, otherwise missing blobs return an exit status of 1. 2145 and will return an exit status of 0 instead.
|
A D | binman.rst | 2130 Exit status 2143 -M is passed to binman, otherwise missing blobs return an exit status of 1. 2145 and will return an exit status of 0 instead.
|
/tools/buildman/ |
A D | board.py | 9 def __init__(self, status, arch, cpu, soc, vendor, board_name, target, cfg_name): argument
|
A D | boards.py | 372 status, maint_list = entry 373 if not status.startswith('Orphan'): 405 self.database[target] = (status, maintainers) 409 status = '-' 430 status = rest 452 status = '-'
|
A D | kconfiglib.py | 2084 def status(flag): function 2093 "warnings " + status(self.warn), 2094 "printing of warnings to stderr " + status(self.warn_to_stderr), 2096 status(self.warn_assign_undef), 2098 status(self.warn_assign_override), 2100 status(self.warn_assign_redun)
|
A D | README.rst | 987 build the selected boards and display build status as it runs (i.e. -v is 1218 fail in this way, buildman exits with status 101.
|
A D | buildman.rst | 987 build the selected boards and display build status as it runs (i.e. -v is 1218 fail in this way, buildman exits with status 101.
|
/tools/dtoc/test/ |
A D | dtoc_test_noparent.dts | 23 status = "disabled";
|
/tools/ |
A D | sunxi-spl-image-builder.c | 289 static void display_help(int status) in display_help() argument 291 fprintf(status == EXIT_SUCCESS ? stdout : stderr, in display_help() 340 exit(status); in display_help()
|
/tools/dtoc/ |
A D | dtb_platdata.py | 364 status = subnode.props.get('status') 365 if (not self._include_disabled and not status or 366 status.value != 'disabled'):
|