| /u-boot/tools/ |
| A D | rmboard.py | 47 stdout = command.RunPipe([cmd], capture=True, raise_on_error=False).stdout 48 if not stdout: 50 fname = stdout.split(':')[0] 54 stdout = command.RunPipe([cmd], capture=True).stdout 57 stdout = command.RunPipe([cmd], capture=True).stdout 72 stdout = command.RunPipe([cmd], capture=True).stdout 75 for line in stdout.splitlines(): 114 stdout) 115 for fname in stdout.splitlines(): 121 stdout = command.RunPipe([cmd], capture=True).stdout [all …]
|
| A D | imx8mimage.c | 385 fprintf(stdout, "header.tag: \t\t0x%x\n", in dump_header_v2() 389 fprintf(stdout, "header.version: \t0x%x\n", in dump_header_v2() 391 fprintf(stdout, "entry: \t\t\t0x%x\n", in dump_header_v2() 393 fprintf(stdout, "reserved1: \t\t0x%x\n", in dump_header_v2() 395 fprintf(stdout, "dcd_ptr: \t\t0x%x\n", in dump_header_v2() 399 fprintf(stdout, "self: \t\t\t0x%x\n", in dump_header_v2() 401 fprintf(stdout, "csf: \t\t\t0x%x\n", in dump_header_v2() 403 fprintf(stdout, "reserved2: \t\t0x%x\n", in dump_header_v2() 594 fprintf(stdout, "\nSIGNED HDMI FW:\n"); in build_image() 599 fprintf(stdout, "\nLoader IMAGE:\n"); in build_image() [all …]
|
| A D | kwboot.c | 90 fflush(stdout); in kwboot_printv() 102 fputc(bs, stdout); in __spinner() 103 fputc(seq[state / div % sizeof(seq)], stdout); in __spinner() 104 fflush(stdout); in __spinner() 128 fputc(c, stdout); in __progress() 135 fputc(' ', stdout); in __progress() 136 fputs(nl, stdout); in __progress() 139 fflush(stdout); in __progress() 865 kwboot_usage(rv ? stderr : stdout, basename(argv[0])); in main()
|
| /u-boot/tools/patman/ |
| A D | command.py | 21 self.stdout = None 27 def __init__(self, stdout='', stderr='', combined='', return_code=0, argument 29 self.stdout = stdout 37 self.stdout = self.stdout.decode('utf-8') 87 kwargs['stdin'] = last_pipe.stdout 107 result.stdout, result.stderr, result.combined = ( 109 if result.stdout and oneline: 110 result.output = result.stdout.rstrip(b'\r\n') 120 return RunPipe([cmd], capture=True, **kwargs).stdout 136 return RunPipe([cmd], **kwargs).stdout [all …]
|
| A D | cros_subprocess.py | 76 if stdout == PIPE_PTY: 84 stdout=stdout, stderr=stderr, shell=shell, cwd=cwd, env=env, 159 stdout = None # Return 170 if self.stdout: 172 stdout = b'' 201 if self.stdout in rlist: 212 stdout += data 233 stdout = self.ConvertData(stdout) 242 if stdout: 243 stdout = self._translate_newlines(stdout) [all …]
|
| A D | tout.py | 158 def Init(_verbose=WARNING, stdout=sys.stdout): argument 170 _stdout = stdout 173 stdout_is_tty = hasattr(sys.stdout, 'isatty') and sys.stdout.isatty()
|
| A D | test_util.py | 63 stdout = command.Output('python3-coverage', 'report') 64 lines = stdout.splitlines() 74 print(stdout) 81 print(stdout) 96 old_out, old_err = sys.stdout, sys.stderr 98 sys.stdout, sys.stderr = capture_out, capture_err 101 sys.stdout, sys.stderr = old_out, old_err
|
| A D | gitutil.py | 75 patch_count = len(result.stdout.splitlines()) 88 stdout = command.RunPipe([pipe], capture=True, oneline=True).stdout 91 name = stdout.split(' ')[1].strip() 115 for line in result.stdout.splitlines()[1:]: 186 patch_count = len(result.stdout.splitlines()) 214 stdout = command.RunPipe(pipe, capture=True, oneline=True).stdout 215 patch_count = int(stdout) 339 stdout = command.RunList(cmd) 340 files = stdout.splitlines()
|
| A D | get_maintainer.py | 46 stdout = command.Output(get_maintainer, '--norolestats', fname) 47 lines = stdout.splitlines()
|
| /u-boot/doc/ |
| A D | README.iomux | 23 A user can use a comma-separated list of devices to set stdin, stdout 55 Thus, a user can see the ouput for any device registered for stdout 56 or stderr on all devices registered for stdout or stderr. As an 57 example, if stdin=serial,nc and stdout=serial,nc then all output 62 to the 'stdin' file, the first output one to 'stdout' and 'stderr'. 76 work, even when stdin=stdout=stderr=serial. 84 stdout=serial. 88 on the serial interface (stdin=serial) when nc is added to stdout (stdout=
|
| A D | README.console | 19 to the 'stdin' file, the first output one to 'stdout' and 'stderr'. 23 stdout or stderr) to any device you see in that list simply by 28 setenv stdout video <- To use the video console 39 putc (to put a char to stdout) 40 puts (to put a string to stdout) 41 printf (to format and put a string to stdout) 52 * FILE (can be 'stdin', 'stdout', 'stderr'):
|
| A D | README.serial_multi | 19 setenv stdout serial_scc 25 setenv stdout serial_smc 47 setenv stdout serial1 52 setenv stdout serial0
|
| /u-boot/test/py/ |
| A D | multiplexed_log.py | 138 stdin=None, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 139 (stdout, stderr) = p.communicate() 140 if stdout is not None: 141 stdout = stdout.decode('utf-8') 145 if stdout: 148 output += stdout 150 if stdout:
|
| A D | u_boot_console_exec_attach.py | 40 runner = self.log.get_runner(cmd[0], sys.stdout) 63 runner = self.log.get_runner(cmd[0], sys.stdout)
|
| /u-boot/tools/buildman/ |
| A D | builderthread.py | 195 result.stdout = '' 274 result.stdout = config_out + result.stdout 317 if result.stdout: 318 fd.write(result.stdout) 356 if nm_result.stdout: 360 print(nm_result.stdout, end=' ', file=fd) 367 if dump_result.stdout: 371 print(dump_result.stdout, end=' ', file=fd) 372 for line in dump_result.stdout.splitlines(): 381 if size_result.stdout: [all …]
|
| /u-boot/tools/binman/ |
| A D | image_test.py | 32 with capture_sys_output() as (stdout, stderr): 37 self.assertEqual('', stdout.getvalue())
|
| A D | cbfs_util_test.py | 332 with test_util.capture_sys_output() as (stdout, _stderr): 334 self.assertIn('Relative offset seems wrong', stdout.getvalue()) 348 with test_util.capture_sys_output() as (stdout, _stderr): 369 with test_util.capture_sys_output() as (stdout, _stderr): 391 with test_util.capture_sys_output() as (stdout, _stderr): 396 cbfs_util.FILE_HEADER_LEN, stdout.getvalue()) 407 with test_util.capture_sys_output() as (stdout, _stderr): 410 stdout.getvalue()) 434 with test_util.capture_sys_output() as (stdout, _stderr): 458 with test_util.capture_sys_output() as (stdout, _stderr): [all …]
|
| /u-boot/common/ |
| A D | console.c | 36 console = stdout; in on_console() 174 case stdout: in console_setfile() 192 case stdout: in console_setfile() 631 console_puts_select(stdout, false, buf_out); in print_pre_console_buffer() 674 fputc(stdout, c); in putc() 718 fputs(stdout, s); in puts() 898 console_puts_select(stdout, false, buf); in console_announce_r() 927 if (stdio_devices[stdout] == NULL) { in stdio_print_current_devices() 930 printf ("%s\n", stdio_devices[stdout]->name); in stdio_print_current_devices() 976 iomux_err += iomux_doenv(stdout, stdoutname); in console_init_r() [all …]
|
| /u-boot/scripts/kconfig/tests/ |
| A D | conftest.py | 67 stdout=subprocess.PIPE, 83 self.stdout = ps.stdout.read().decode() 105 print(self.stdout)
|
| /u-boot/arch/arm/dts/ |
| A D | imx7s-warp-u-boot.dtsi | 8 stdout-path = &uart1;
|
| A D | fsl-ls1012a-qds.dts | 11 stdout-path = &duart0;
|
| A D | omap3-beagle-u-boot.dtsi | 12 stdout-path = &uart3;
|
| A D | omap3-beagle-xm-ab-u-boot.dtsi | 12 stdout-path = &uart3;
|
| A D | omap3-beagle-xm-u-boot.dtsi | 12 stdout-path = &uart3;
|
| A D | ls1021a-iot-duart.dts | 13 stdout-path = &uart0;
|