HomeSort by relevance Sort by last modified time
    Searched defs:STDOUT (Results 1 - 25 of 145) sorted by null

1 2 3 4 5 6

  /external/icu/icu4j/perf-tests/
collationperf.pl 130 format STDOUT =
  /build/kati/
fileutil.h 35 STDOUT,
  /test/vts/runners/host/
const.py 18 STDOUT = cmd_utils.STDOUT
  /test/vts/utils/python/common/
cmd_utils.py 22 STDOUT = 'stdouts'
38 tuple(string, string, int) which are stdout, stderr and return code.
77 command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
78 (stdout, stderr) = proc.communicate()
81 '(stdout: %s\n stderr: %s\n)' % (command, stdout,
87 """Executes one shell command and returns (stdout, stderr, exit_code).
94 tuple(string, string, int), containing stdout, stderr, exit_code of
101 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
102 stdout, stderr = p.communicate(
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/
2-1.c 48 #define STDOUT 1
72 close(STDOUT);
74 dup2(the_pipe[1], STDOUT);
78 fflush(stdout);
2-2.c 49 #define STDOUT 1
73 close(STDOUT);
75 dup2(the_pipe[1], STDOUT);
79 fflush(stdout);
  /external/python/cpython3/Lib/asyncio/
windows_utils.py 28 STDOUT = subprocess.STDOUT
179 The stdin, stdout, stderr are None or instances of PipeHandle.
181 def __init__(self, args, stdin=None, stdout=None, stderr=None, **kwds):
191 if stdout == PIPE:
195 stdout_wfd = stdout
199 elif stderr == STDOUT:
204 super().__init__(args, stdin=stdin_rfd, stdout=stdout_wfd,
215 self.stdout = PipeHandle(stdout_rh)
221 if stdout == PIPE
    [all...]
subprocess.py 14 STDOUT = subprocess.STDOUT
25 self.stdin = self.stdout = self.stderr = None
34 if self.stdout is not None:
35 info.append('stdout=%r' % self.stdout)
45 self.stdout = streams.StreamReader(limit=self._limit,
47 self.stdout.set_transport(stdout_transport)
66 reader = self.stdout
82 reader = self.stdout
    [all...]
  /external/libpng/contrib/pngminus/
png2pnm.c 39 #define STDOUT 1
78 FILE *fp_wr = stdout;
129 else if (fp_wr == stdout)
148 /* set stdin/stdout if required to binary */
153 if ((raw) && (fp_wr == stdout))
155 setmode (STDOUT, O_BINARY);
pnm2png.c 39 #define STDOUT 1
81 FILE *fp_wr = stdout;
128 else if (fp_wr == stdout)
147 /* set stdin/stdout to binary, we're reading the PNM always! in binary format */
152 if (fp_wr == stdout)
154 setmode (STDOUT, O_BINARY);
  /external/python/cpython2/Lib/
subprocess.py 24 stdout instead of a return code
30 STDOUT: Special value that indicates that stderr should go to stdout
83 __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call",
115 STDOUT = -2
202 The stdout argument is not allowed as it is used internally.
203 To capture standard error in the result, use stderr=STDOUT.
207 ... stderr=STDOUT)
210 if 'stdout' in kwargs:
211 raise ValueError('stdout argument not allowed, it will be overridden.'
    [all...]
  /external/python/cpython3/Lib/
subprocess.py 27 STDOUT: Special value that indicates that stderr should go to stdout
37 stdout instead of a return code
65 cmd, returncode, stdout, stderr, output
86 def stdout(self): member in class:CalledProcessError
90 @stdout.setter
91 def stdout(self, value): member in class:CalledProcessError
93 # .stdout is a transparent alias for .output
102 cmd, output, stdout, stderr, timeout
115 def stdout(self) member in class:TimeoutExpired
119 def stdout(self, value): member in class:TimeoutExpired
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
subprocess.py 34 stdin=None, stdout=None, stderr=None,
70 stdin, stdout and stderr specify the executed programs' standard
76 parent. Additionally, stderr can be STDOUT, which indicates that the
78 file handle as for stdout.
95 If universal_newlines is true, the file objects stdout and stderr are
101 default). Also, the newlines attribute of the file objects stdout,
179 Interact with process: Send data to stdin. Read data from stdout
185 communicate() returns a tuple (stdout, stderr).
196 stdout
197 If the stdout argument is PIPE, this attribute is a file objec
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
subprocess.py 34 stdin=None, stdout=None, stderr=None,
70 stdin, stdout and stderr specify the executed programs' standard
76 parent. Additionally, stderr can be STDOUT, which indicates that the
78 file handle as for stdout.
95 If universal_newlines is true, the file objects stdout and stderr are
101 default). Also, the newlines attribute of the file objects stdout,
179 Interact with process: Send data to stdin. Read data from stdout
185 communicate() returns a tuple (stdout, stderr).
196 stdout
197 If the stdout argument is PIPE, this attribute is a file objec
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
subprocess.py 34 stdin=None, stdout=None, stderr=None,
70 stdin, stdout and stderr specify the executed programs' standard
76 parent. Additionally, stderr can be STDOUT, which indicates that the
78 file handle as for stdout.
95 If universal_newlines is true, the file objects stdout and stderr are
101 default). Also, the newlines attribute of the file objects stdout,
179 Interact with process: Send data to stdin. Read data from stdout
185 communicate() returns a tuple (stdout, stderr).
196 stdout
197 If the stdout argument is PIPE, this attribute is a file objec
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
subprocess.py 34 stdin=None, stdout=None, stderr=None,
70 stdin, stdout and stderr specify the executed programs' standard
76 parent. Additionally, stderr can be STDOUT, which indicates that the
78 file handle as for stdout.
95 If universal_newlines is true, the file objects stdout and stderr are
101 default). Also, the newlines attribute of the file objects stdout,
179 Interact with process: Send data to stdin. Read data from stdout
185 communicate() returns a tuple (stdout, stderr).
196 stdout
197 If the stdout argument is PIPE, this attribute is a file objec
    [all...]
  /test/vts/harnesses/tradefed/src/com/android/tradefed/util/
ProcessHelper.java 35 // Timeout value of joining the stdout and stderr threads.
41 // The stdout and stderr of the process.
45 // The threads redirecting the stdout and stderr to buffers.
49 // The buffers of stdout and stderr.
65 STDOUT,
108 case STDOUT:
202 mStdoutReader, mStdout, "process-helper-stdout", ReaderThread.LogType.STDOUT);
266 * @return the stdout of the process. As the buffer is not thread safe, the caller must call
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.jarprocessor_1.0.300.v20130327-2119.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/26.2.0-alpha16/
lint-26.2.0-alpha16.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.10.0/
gradle-0.10.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.7.0/
gradle-0.7.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.7.4/
gradle-0.7.4.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.8.0/
gradle-0.8.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.8.1/
gradle-0.8.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.8.3/
gradle-0.8.3.jar 

Completed in 434 milliseconds

1 2 3 4 5 6