Home
last modified time | relevance | path

Searched refs:stdout (Results 1 – 25 of 441) sorted by relevance

12345678910>>...18

/rk3399_rockchip-uboot/tools/patman/
H A Dcros_subprocess.py56 def __init__(self, args, stdin=None, stdout=PIPE_PTY, stderr=PIPE_PTY, argument
76 if stdout == PIPE_PTY:
78 stdout = os.fdopen(stdout_pty[1])
84 stdout=stdout, stderr=stderr, shell=shell, cwd=cwd, env=env,
95 self.stdout = os.fdopen(stdout_pty[0])
146 stdout = None # Return
157 if self.stdout:
158 read_set.append(self.stdout)
159 stdout = []
160 if self.stderr and self.stderr != self.stdout:
[all …]
H A Dcommand.py21 self.stdout = None
27 def __init__(self, stdout='', stderr='', combined='', return_code=0, argument
29 self.stdout = stdout
76 kwargs['stdin'] = last_pipe.stdout
96 result.stdout, result.stderr, result.combined = (
98 if result.stdout and oneline:
99 result.output = result.stdout.rstrip('\r\n')
109 return RunPipe([cmd], capture=True, raise_on_error=raise_on_error).stdout
115 **kwargs).stdout.strip())
118 return RunPipe([cmd], **kwargs).stdout
[all …]
H A Dtout.py146 def Init(_verbose=WARNING, stdout=sys.stdout): argument
158 _stdout = stdout
161 stdout_is_tty = hasattr(sys.stdout, 'isatty') and sys.stdout.isatty()
H A Dgitutil.py65 stdout = command.RunPipe(pipe, capture=True, oneline=True).stdout
66 patch_count = int(stdout)
79 stdout = command.RunPipe([pipe], capture=True, oneline=True).stdout
82 name = stdout.split(' ')[1].strip()
106 for line in result.stdout.splitlines()[1:]:
177 patch_count = len(result.stdout.splitlines())
205 stdout = command.RunPipe(pipe, capture=True, oneline=True).stdout
206 patch_count = int(stdout)
280 stdout = command.RunList(cmd)
281 files = stdout.splitlines()
H A Dget_maintainer.py46 stdout = command.Output(get_maintainer, '--norolestats', fname)
47 return stdout.splitlines()
H A Dterminal.py61 sys.stdout.flush()
112 os.isatty(sys.stdout.fileno())))
/rk3399_rockchip-uboot/cmd/ddr_tool/memtester/
H A Dtests.c77 fflush(stdout); in test_stuck_address()
82 fflush(stdout); in test_stuck_address()
89 fflush(stdout); in test_stuck_address()
107 fflush(stdout); in test_stuck_address()
113 fflush(stdout); in test_stuck_address()
126 fflush(stdout); in test_random_value()
132 fflush(stdout); in test_random_value()
136 fflush(stdout); in test_random_value()
257 fflush(stdout); in test_solidbits_comparison()
269 fflush(stdout); in test_solidbits_comparison()
[all …]
/rk3399_rockchip-uboot/doc/
H A DREADME.iomux24 A user can use a comma-separated list of devices to set stdin, stdout
56 Thus, a user can see the ouput for any device registered for stdout
57 or stderr on all devices registered for stdout or stderr. As an
58 example, if stdin=serial,nc and stdout=serial,nc then all output
63 to the 'stdin' file, the first output one to 'stdout' and 'stderr'.
77 work, even when stdin=stdout=stderr=serial.
85 stdout=serial.
89 on the serial interface (stdin=serial) when nc is added to stdout (stdout=
H A DREADME.console20 to the 'stdin' file, the first output one to 'stdout' and 'stderr'.
24 stdout or stderr) to any device you see in that list simply by
29 setenv stdout video <- To use the video console
40 putc (to put a char to stdout)
41 puts (to put a string to stdout)
42 printf (to format and put a string to stdout)
53 * FILE (can be 'stdin', 'stdout', 'stderr'):
H A DREADME.serial_multi19 setenv stdout serial_scc
25 setenv stdout serial_smc
47 setenv stdout serial1
52 setenv stdout serial0
/rk3399_rockchip-uboot/common/
H A Dconsole.c41 console = stdout; in on_console()
121 case stdout: in console_setfile()
143 case stdout: in console_setfile()
511 console_puts_noserial(stdout, buf_out); in print_pre_console_buffer()
550 fputc(stdout, c); in putc()
768 case stdout: in console_assign()
805 console_puts_noserial(stdout, buf); in console_announce_r()
834 if (stdio_devices[stdout] == NULL) { in stdio_print_current_devices()
837 printf ("%s\n", stdio_devices[stdout]->name); in stdio_print_current_devices()
880 iomux_err += iomux_doenv(stdout, stdoutname); in console_init_r()
[all …]
/rk3399_rockchip-uboot/tools/buildman/
H A Dbuilderthread.py176 result.stdout = ''
241 result.stdout = config_out + result.stdout
282 if result.stdout:
284 fd.write(result.stdout.decode('UTF-8').encode('ASCII', 'replace'))
320 if nm_result.stdout:
324 print >>fd, nm_result.stdout,
331 if dump_result.stdout:
335 print >>fd, dump_result.stdout,
336 for line in dump_result.stdout.splitlines():
345 if size_result.stdout:
[all …]
H A Dfunc_test.py234 self.assertEqual(len(result.stdout), os.path.getsize(help_file))
242 self.assertTrue(len(result.stdout) > 1000)
262 return command.CommandResult(return_code=0, stdout=commit_shortlog)
267 stdout=''.join(commit_log[:count]))
280 return command.CommandResult(return_code=0, stdout='upstream\n')
283 stdout='refs/heads/master\n')
356 return command.CommandResult(return_code=0, stdout='make')
370 result.stdout = len(result.stdout.splitlines())
/rk3399_rockchip-uboot/tools/binman/
H A Dbinman.py65 stdout = command.Output('coverage', 'report')
66 coverage = stdout.splitlines()[-1].split(' ')[-1]
68 print stdout
H A Dbinman65 stdout = command.Output('coverage', 'report')
66 coverage = stdout.splitlines()[-1].split(' ')[-1]
68 print stdout
/rk3399_rockchip-uboot/test/py/
H A Du_boot_console_exec_attach.py41 runner = self.log.get_runner(cmd[0], sys.stdout)
64 runner = self.log.get_runner(cmd[0], sys.stdout)
H A Dmultiplexed_log.py138 stdin=None, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
139 (stdout, stderr) = p.communicate()
141 if stdout:
144 output += stdout
146 if stdout:
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/
H A Dmake_fit_atf.py143 if fit_file_name != sys.stdout:
146 fit_file = sys.stdout
176 if fit_file_name != sys.stdout:
216 FIT_ITS=sys.stdout
/rk3399_rockchip-uboot/tools/
H A Dkwboot.c90 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()
859 kwboot_usage(rv ? stderr : stdout, basename(argv[0])); in main()
/rk3399_rockchip-uboot/arch/arm/dts/
H A Dfsl-ls1012a-qds.dts12 stdout-path = &duart0;
H A Dls1021a-twr-lpuart.dts14 stdout-path = &lpuart0;
H A Dls1021a-iot-duart.dts14 stdout-path = &uart0;
H A Dls1021a-twr-duart.dts14 stdout-path = &uart0;
/rk3399_rockchip-uboot/arch/arc/dts/
H A Daxs101.dts14 stdout-path = &uart0;
H A Daxs103.dts14 stdout-path = &uart0;

12345678910>>...18